Race
题号:NC202773
时间限制:C/C++/Rust/Pascal 3秒,其他语言6秒
空间限制:C/C++/Rust/Pascal 256 M,其他语言512 M
64bit IO Format: %lld

题目描述

In conjunction with the IOI, Pattaya City will host a race: the International Olympiad in Racing (IOR) 2011. As the host, we have to find the best possible course for the race.
 In the Pattaya-Chonburi metropolitan area, there are N cities connected by a network of N-1 highways. Each highway is bidirectional, connects two different cities, and has an integer length in kilometers. Furthermore, there is exactly one possible path connecting any pair of cities. That is, there is exactly one way to travel from one city to another city by a sequence of highways without visiting any city twice. 
The IOR has specific regulations that require the course to be a path whose total length is exactly K kilometers, starting and ending in different cities. Obviously, no highway (and therefore also no city) may be used twice on the course to prevent collisions. To minimize traffic disruption, the course must contain as few highways as possible.

输入描述:

Write a procedure best_path(N,K,H,L) that takes the following parameters: 
N– the number of cities. The cities are numbered 0 through N-1
K– the required distance for the race course. 
H– a two-dimensional array representing highways. For 0 ≤ i < N-1, highway i connects the cities H[i][0] and H[i][1]. 
L– a one-dimensional array representing the lengths of the highways. For 0 ≤ i < N-1, the length of highway i is L[i]
You may assume that all values in the array H are between 0 and N-1, inclusive, and that the highways described by this array connect all cities as described above. You may also assume that all values in the array L are integers between 0 and 1 000 000, inclusive. 

输出描述:

Your procedure must return the minimum number of highways on a valid race course of length exactly K. If there is no such course, your procedure must return -1
示例1

输入

复制
4 3
0 1 1
1 2 2
1 3 4

输出

复制
2

说明

Consider the case shown in Figure 1
The course can start in city 0, go to city 1, and terminate in city 2. Its length will be exactly 1 km + 2 km = 3 km, and it consists of two highways. This is the best possible course; therefore best_path(N,K,H,L) must return 2.
示例2

输入

复制
3 3
0 1 1
1 2 1

输出

复制
-1

说明

Consider the case shown in Figure 2, 
There is no valid course. In this case, best_path(N,K,H,L) must return -1.
示例3

输入

复制
11 12
0 1 3
0 2 4
2 3 5
3 4 4
4 5 6
0 6 3
6 7 2
6 8 5
8 9 6
8 10 7

输出

复制
2

说明

Consider the case shown in Figure 3
One possible course consists of 3 highways: from city 6 via city 0 and city 2 to city 3. Another course starts in city 10 and goes via city 8 to city 6. Both of these courses have length exactly 12 km, as required. The second one is optimal, as there is no valid course with a single highway. Hence, best_path(N,K,H,L) must return 2.