Crazy MinerProblem code: CRZMNR |
All submissions for this problem are available.
Bruce the miner works as a slave in a diamond mine, and now the mine is starting to fall apart. After helping his friends evacuate the mine, he thinks it is the perfect time to make some profit and escape from his oppressive masters.
His plan is to re-enter the mine with the excuse of helping more people, take as much diamonds as he can and exit the mine before it falls apart without being seen. Then, he will escape far away and live peacefully in a Caribbean island with all his diamonds. However, the mine will fall apart in L minutes, so he needs help in determining the maximum number of diamonds he can take and return to the entrance before the mine falls apart.
The mine is structured as N chambers connected by N-1 corridors. Each corridor connects two different chambers and takes a specific number of minutes to be traversed. Also, it is known that there is exactly one path between each pair of chambers in the mine. The chamber 0 represents the entrance to the mine. Miner Bruce can take as much diamonds as he wants from the chamber where he is instantly.
Input
The first line contains an integer T, which specifies the number of test cases. Then, T test case descriptions will follow.
Each test case will start with a line with two positive integers, N and L, whose meanings were described previously. The next line will contain N integers Di, specifying the number of diamonds on each chamber. The next N - 1 lines will contain three integers Ai, Bi and Ci each, which indicates that the chambers Ai and Bi are connected by a corridor that takes Ci minutes to be traversed.
Output
For each input case you must print the string "Case #i: ", where i is the test case number, starting from 1, followed by the maximum number that Bruce the miner can recover without being trapped inside the mine.
Example
Input 2 5 7 7 3 7 8 6 0 1 1 0 2 1 0 3 1 0 4 1 6 25 5 8 3 3 10 7 0 1 4 3 0 3 2 3 2 5 2 3 4 5 4 Output Case #1: 28 Case #2: 28
Constraints
- 1 <= T <=100
- 2 <= N <=100
- 1 <= L <=200
- Ci will be between 1 and 100, inclusive, for each i between 1 and N-1, inclusive.
- Di will be between 0 and 1000, inclusive, for each i between 1 and N, inclusive Ai will be between 0 and N-1, inclusive, for each i between 1 and N-1, inclusive.
- Bi will be between 0 and N-1, inclusive, for each i between 1 and N-1, inclusive.
- There will be exactly one path between each pair of different chambers.
| Author: | divij |
| Date Added: | 29-09-2010 |
| Time Limit: | 1 sec |
| Source Limit: | 50000 Bytes |
| Languages: | C, C99 strict, CLOJ, CPP 4.0.0-8, CPP 4.3.2, F#, GO, PERL6, PYTH 3.1.2, TEXT |
Comments
SUCCESSFUL SUBMISSIONS FOR THIS PROBLEM:
HELP
Program should read from standard input and write to standard output. After you submit a solution you can see your results by clicking on the [My Submissions] tab on the problem page. Below are the possible results:
- Accepted
Your program ran successfully and gave a correct answer. If there is a score for the problem, this will be displayed in parenthesis next to the checkmark. - Time Limit Exceeded
Your program was compiled successfully, but it didn't stop before time limit. Try optimizing your approach. - Wrong Answer
Your program compiled and ran succesfully but the output did not match the expected output. - Runtime Error
Your code compiled and ran but encountered an error. The most common reasons are using too much memory or dividing by zero. For the specific error codes see the help section. - Compilation Error
Your code was unable to compile. When you see this icon, click on it for more information.
If you are still having problems, see a sample solution here.

Fetching successful submissions
