CCO '11 P2 - Vampire Tunnels

View as PDF

Submit solution

Points: 15 (partial)
Time limit: 1.4s
Memory limit: 1G

Problem type
Canadian Computing Competition: 2011 Stage 2, Day 1, Problem 2

You are a vampire, and you want to travel from some point A to another point B. You may travel in the sunshine above ground or avoid the sunshine by traveling underground via certain tunnels. You have mapped out the area you wish to travel, and have found some secret tunnels between some points, some other points that you can walk between above ground. Both the tunnels and above ground paths are bidirectional. Given that you can't be exposed to the sunlight for more than S seconds in total (0 \le S \le 3\,600), you want to minimize the total travel time (given that you have a constant velocity of 1 unit of distance per second).

Input Specification

On the first line of input, you have the number S, the maximum number of seconds that you can be exposed to the sun. On the next line is the number N (2 \le N \le 1\,600), which is the number of points, and the number E (1 \le E \le 10\,000), which is the number of connections between these N points, separated by one space.

The next E lines each contain information about the connections between points. Specifically, each of these lines contain four integers: s (one end point of a connection) (0 \le s \le N - 1), t (the other end point of a connection) (0 \le t \le N - 1, s \ne t), d (the distance between s and t, 1 \le d \le 10\,000), u (indicate whether this is underground or above ground: 1 indicates it is above ground, and 0 indicates there is a tunnel between s and t).

Note: for 30\% of the marks for this question, you can assume N \le 50.

Output Specification

The output is one integer, which is the minimum amount of time required to get from point 0 to point N - 1, with the constraint that there are not more than S seconds of exposure to the sun. If there is no possible path which satisfies the constraint, output -1.

Sample Input

3
4 6
0 1 3 1
0 2 4 1
0 3 10 1
1 2 3 0
1 3 1 1
2 3 3 0

Sample Output

9

Explanation for Sample Output

The path 0 \to 1 \to 2 \to 3 gives a total travel time of 9 seconds with 3 seconds of exposure to the sun. All other paths either required more time (e.g., 0 \to 3 uses 10 seconds) or overexpose to the sun (e.g., 0 \to 1 \to 3 exposes to the sun for 4 seconds).


Comments


  • 8
    aeternalis1  commented on Aug. 11, 2017, 6:54 p.m.

    Lower memory usage in python

    I AC all test cases except number 6, which I MLE by a somewhat small margin. Is there any way to make my code use less memory?