#P1023. Problem 1. Bessla Motors
Problem 1. Bessla Motors
当前没有测试数据。
一、Problem Name
Bessla Motors
二、Problem Description
Note: The time limit for this problem is 3s, 1.5x the default. The memory limit for this problem is 512MB, twice the default.
Farmer John would like to promote his line of Bessla electric tractors by showcasing Bessla's network of charging stations. He has identified () points of interest labeled , of which the first () are charging stations and the remainder are travel destinations. These points of interest are interconnected by () bidirectional roads, the th of which connects distinct points and () and has length miles ().
A Bessla can travel up to miles () on a single charge, allowing it to reach any destination within miles of a charging station. A destination is deemed well-connected if it is reachable from at least () distinct charging stations. Your task is to assist Farmer John in identifying the set of well-connected travel destinations.
三、Input Format (input arrives from the terminal / stdin)
- The first line contains five space-separated integers , , , , and . Each of the following lines contains three space-separated integers , , and such that .
- The charging stations are labeled . The remaining points of interest are all travel destinations.
四、Output Format (print output to the终端 / stdout)
- First, output the number of well-connected travel destinations on a single line.
- Then, list all well-connected travel destinations in ascending order, each on a separate line.
五、Sample Input and Output
Sample Input 1
3 3 1 4 1
1 2 3
1 3 5
2 3 2
Sample Output 1
1
2
Explanation: We have one charging station at 1. From this charging station, we can reach point 2 (since it is distance 3 away from 1), but not point 3 (since it is distance 5 away from 1). Thus, only point 2 is well-connected.
Sample Input 2
4 3 2 101 2
1 2 1
2 3 100
1 4 10
Sample Output 2
2
3
4
Explanation: We have charging stations at 1 and 2, and both points 3 and 4 are within distance 101 of both 1 and 2. Thus, both points 3 and 4 are well-connected.
Sample Input 3
4 3 2 100 2
1 2 1
2 3 100
1 4 10
Sample Output 3
1
4
六、Scoring Rules
- Inputs 4 and 5: and and .
- Inputs 6 and 7: .
- Inputs 8 - 15: No additional constraints.
Problem credits: Alexander Wei.