3401. Merry Christmas

单点时限: 8.0 sec

内存限制: 256 MB

International Christmas Present Company (ICPC) is a company to employ Santa and deliver presents on Christmas. Many parents request ICPC to deliver presents to their children at specified time of December 24. Although same Santa can deliver two or more presents, because it takes time to move between houses, two or more Santa might be needed to finish all the requests on time.

Employing Santa needs much money, so the president of ICPC employed you, a great programmer, to optimize delivery schedule. Your task is to write a program to calculate the minimum number of Santa necessary to finish the given requests on time. Because each Santa has been well trained and can conceal himself in the town, you can put the initial position of each Santa anywhere.

输入格式

The input consists of several datasets. Each dataset is formatted as follows.

$N \ M \ L \
u_1 \ v_1 \ d_1 \
u_2 \ v_2 \ d_2 \
\vdots \
u_M \ v_M \ d_M \
p_1 \ t_1 \
p_2 \ t_2 \
\vdots \
p_L \ t_L$

The first line of a dataset contains three integer, $N$, $M$ and $L$ $(1 \le N \le 100, 0 \le M \le 1000, 1 \le L \le 1000)$ each indicates the number of houses, roads and requests respectively.

The following $M$ lines describe the road network. The $i$-th line contains three integers, $u_i$, $v_i$, and $d_i$ $(0 \le u_i < v_i \le N - 1, 1 \le d_i \le 100)$ which means that there is a road connecting houses $u_i$ and $v_i$ with $d_i$ length. Each road is bidirectional. There is at most one road between same pair of houses. Whole network might be disconnected.

The next $L$ lines describe the requests. The $i$-th line contains two integers, $p_i$ and $t_i$ $(0 \le p_i \le N - 1, 0 \le t_i \le 10^8)$ which means that there is a delivery request to house $p_i$ on time $t_i$ . There is at most one request for same place and time. You can assume that time taken other than movement can be neglectable, and every Santa has the same speed, one unit distance per unit time.

The end of the input is indicated by a line containing three zeros separated by a space, and you should not process this as a test case.

输出格式

Print the minimum number of Santa necessary to finish all the requests on time.

样例

Input
3 2 3
0 1 10
1 2 10
0 0
1 10
2 0
3 2 4
0 1 10
1 2 10
0 0
1 10
2 20
0 40
10 10 10
0 1 39
2 3 48
3 5 20
4 8 43
3 9 10
8 9 40
3 4 5
5 7 20
1 7 93
1 3 20
0 0
1 100000000
2 100
3 543
4 500
5 400
6 300
7 200
8 100
9 100
0 0 0
Output
2
1
4

5 人解决,5 人已尝试。

5 份提交通过,共有 14 份提交。

6.6 EMB 奖励。

创建: 6 年,6 月前.

修改: 6 年,6 月前.

最后提交: 3 年,4 月前.

来源: ACM-ICPC Japan Alumni Group Practice Contest 2010

题目标签