103 - Stacking Boxes

All about problems in Volume 1. If there is a thread about your problem, please use it. If not, create one with its number in the subject.

Moderator: Board moderators

Post Reply
--X--
New poster
Posts: 1
Joined: Mon Apr 08, 2002 4:28 am
Contact:

103 - Stacking Boxes

Post by --X-- »

Does anyone have an insight into some trick the judges input may have. The problem is a straightforward longest path algorithm, which makes me wonder why I keep getting WA.

Thnx for any help
FireDragon
New poster
Posts: 4
Joined: Fri Apr 05, 2002 2:00 am
Location: HeBei,China

Post by FireDragon »

Your algorithm is the same as mine----1)Sort the boxes' dimensions 2)Get the longest path.And My solution was accepted two days ago.
Goodluck.
chang
New poster
Posts: 16
Joined: Wed Jan 16, 2002 2:00 am

It may be helpful

Post by chang »

It was my mistake:when the maximum no of box is 1... I printed 0 wronlgly...
Did u check this input....
hsihsiwu
New poster
Posts: 9
Joined: Fri Apr 12, 2002 2:27 am

Post by hsihsiwu »

If input is 6 1, what is answer?
C8H10N4O2
Experienced poster
Posts: 137
Joined: Wed Feb 27, 2002 2:00 am
Location: Pasadena, CA

Post by C8H10N4O2 »

If input is

Code: Select all

6 1
Output should be

Code: Select all

1
1
hsihsiwu
New poster
Posts: 9
Joined: Fri Apr 12, 2002 2:27 am

Post by hsihsiwu »

Thanks. I got it.
ositruc
New poster
Posts: 1
Joined: Fri May 24, 2002 4:36 am
Location: University of Alberta

103 - Why does it time out?

Post by ositruc »

My program seems to work for any test case I give it, within the boundaries specified by the problem statement. However when I submit my code the online-judge times out. Does anyone have any idea what input they are using that could time out my program?
"Arrrrr! I'm a pirate!"
-Pirate.
amadeus082
New poster
Posts: 1
Joined: Wed May 29, 2002 3:34 am
Contact:

103 yellow check mark???

Post by amadeus082 »

What exactly does the yellow check mark mean next to the problem? Apparently it's affecting my program because it works for every test case I use, but got wrong answer from the judge. Does any know any special things in the input?

--Matthew
ftomi
Learning poster
Posts: 64
Joined: Sun Jan 06, 2002 2:00 am
Location: Hungary
Contact:

Post by ftomi »

The yellow colour means a special correction program for that problem. It's because there are more solution.
Melon Melon
New poster
Posts: 17
Joined: Fri May 31, 2002 6:30 pm
Contact:

Question on 103

Post by Melon Melon »

[c] :oops:
Would anyone give me hints on solving question 103??
I have that a silly way to do it, but don't know how to continue it or my way is wrong.
I first sort the dimensions of each box and then try to find out each boxes which can hold the next box......but if I do in this way, the codes will be very complicated.
Could anyone help me, please?[/c]
cyfra
Experienced poster
Posts: 144
Joined: Thu Nov 22, 2001 2:00 am
Location: Gdynia, Poland

Hi!

Post by cyfra »

Hi!

Yes of course you have good idea....

Just try to look at this problem as a graph...
( But you will not have to implement it :wink: )
so there is a line beetween two boxes if you can put one into another..

This graph is one-way graph and it has no cycles...

So now you have only to count the longest path in such a graph...
Which is quite easy...

So don't worry that your program will be very complicated..
It only has to work :D

Good Luck :wink:

PS.

Next time try not to use table for C code for normal writing..
Melon Melon
New poster
Posts: 17
Joined: Fri May 31, 2002 6:30 pm
Contact:

Thanks a lot!!! ^^

Post by Melon Melon »

:D
Ths!!Ths!!
obayashi
New poster
Posts: 33
Joined: Thu Jun 20, 2002 1:18 pm

...

Post by obayashi »

maybe u use brute force to search for the result.

post yr code here pls...
Time makes a fool of memory
And yet my memories still shine
Revenger
Experienced poster
Posts: 132
Joined: Sun Apr 14, 2002 12:27 pm
Location: Russia

103 DP

Post by Revenger »

You must use DP or DFS to solve this problem. If realy want help then post your source code.
dawynn
New poster
Posts: 47
Joined: Fri Jun 21, 2002 3:08 pm

Post by dawynn »

Does anyone have any suggestions on tricky cases to try?
Post Reply

Return to “Volume 1 (100-199)”