Canadian Computing Competition: 2007 Stage 1, Senior #4
The local waterpark has a great slide complex, with many paths crisscrossing down the hill. There is one start point and one end point, but at various points one can turn and take different paths. Walter and Wanda are wondering exactly how many different ways there are to go down the slide. Can you solve their problem?
More precisely, there are marked points (including the start at and the end at ) where the paths down the hill may split or merge. All paths move down the hill to higher numbered positions; some paths will actually cross over others without meeting but we don't have to worry about that. We won't worry about the collisions between sliders that can happen either. Our problem is simply to determine the number of different sequences of marked points we can follow down the hill.
For example, at one small waterpark, there are 4 points with direct slides from to points and ; from to and ; and from to . There are 3 ways down the hill. You can check this by seeing that we can go , or .
(Here is a hint: think about starting at the bottom of the slide.)
Input Specification
Input begins with a single integer (), on a line by itself, indicating the number of marked points. The next lines contain point pairs of the form x y
, where . For example, 1234 8765
indicates a direct slide from point 1234
to point 8765
. The last line of input will be indicated by point pair 0 0
.
Output Specification
The output is an integer, which is the number of different paths from point to point . You can assume that the number of paths will be less than . It is possible that there is no path from point to point , in which case the number of paths is .
Sample Input
4
1 2
1 4
2 3
2 4
3 4
0 0
Output for Sample Input
3
Comments
I implemented an inefficient topological sort dp algorithm, and ..... it worked?
Wow.
This is truly the exact moment Walter White became Heisenberg.
I did for testing the following graph:
In this test, there should be 3 paths: (1-2-5), (1-3-5), (1-4-3-5). But the solution of the official CCC, link, gives 2 paths. Maybe I didn't understand the goal of the problem...
Your case is invalid.
you are correct. It seems I misread it. thank you for clearing my doubt.
My DFS implementation TLEs. Any suggestions?
Brute force dfs TLEs, try using a different approach. DP is one of the problem types here.
My code wont run on Dmoj. Works on some compilers only.
Check the status code help page for some details about the
failed initializing
error you're getting. Put simply, you're declaring a integer array which would occupy around 381mb of memory.The memory limit for this problem is 64mb.
Is it a coincidence that the example does the exact same thing as his submission?