Problem C
Tree Advertisement
Languages
en
sv
In Azerbaijan there are
You want to use this opportunity to advertise your new, really clever online programming judge by putting up advertisement posters on a lot of trees along different roads. If you put up posters along a road, everyone who travels along that road during the trip from their hometown to the capital will see the poster.
You have determined that it doesn’t help if someone sees your posters more than once during their travels – your judge is so impressive that everyone wants to use it after seeing the poster just once! Each road has a certain cost for putting up a poster on all the trees along the road, each city has a given population, and you have a limited budget. If you put up the posters optimally, what’s the greatest number of people who will see at least one poster on their way to the capital?
Input
The first line contains two integers
The second line contains
The following
It’s guaranteed that a sequence of roads exist between any pair of paths.
Output
Output a single integer – the greatest number of people who can see your posters, if you put them up optimally.
Scoring
Your solution will be tested on a set of test groups, each worth a number of points. To get the points for a test group you need to solve all test cases in the test group. Your final score will be the maximum score of a single submission.
Group |
Points |
Constraints |
|
|
|
|
|
Each path has |
|
|
|
|
|
|
|
|
|
|
|
No additional constraints. |
Explanation of sample
In the first sample case it’s optimal to put up posters on
the roads between city
Sample Input 1 | Sample Output 1 |
---|---|
6 500 500 1000 100 300 300 1 2 200 3 2 100 1 6 350 5 6 501 6 4 250 |
1700 |
Sample Input 2 | Sample Output 2 |
---|---|
6 4 10 20 30 40 50 1 2 1 1 3 1 1 4 1 2 5 1 3 6 1 |
150 |