101434: [AtCoder]ABC143 E - Travel by Car

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:3 Solved:0

Description

Score : $500$ points

Problem Statement

There are $N$ towns numbered $1$ to $N$ and $M$ roads. The $i$-th road connects Town $A_i$ and Town $B_i$ bidirectionally and has a length of $C_i$.

Takahashi will travel between these towns by car, passing through these roads. The fuel tank of his car can contain at most $L$ liters of fuel, and one liter of fuel is consumed for each unit distance traveled. When visiting a town while traveling, he can full the tank (or choose not to do so). Travel that results in the tank becoming empty halfway on the road cannot be done.

Process the following $Q$ queries:

  • The tank is now full. Find the minimum number of times he needs to full his tank while traveling from Town $s_i$ to Town $t_i$. If Town $t_i$ is unreachable, print $-1$.

Constraints

  • All values in input are integers.
  • $2 \leq N \leq 300$
  • $0 \leq M \leq \frac{N(N-1)}{2}$
  • $1 \leq L \leq 10^9$
  • $1 \leq A_i, B_i \leq N$
  • $A_i \neq B_i$
  • $\left(A_i, B_i\right) \neq \left(A_j, B_j\right)$ (if $i \neq j$)
  • $\left(A_i, B_i\right) \neq \left(B_j, A_j\right)$ (if $i \neq j$)
  • $1 \leq C_i \leq 10^9$
  • $1 \leq Q \leq N\left(N-1\right)$
  • $1 \leq s_i, t_i \leq N$
  • $s_i \neq t_i$
  • $\left(s_i, t_i\right) \neq \left(s_j, t_j\right)$ (if $i \neq j$)

Input

Input is given from Standard Input in the following format:

$N$ $M$ $L$
$A_1$ $B_1$ $C_1$
$:$
$A_M$ $B_M$ $C_M$
$Q$
$s_1$ $t_1$
$:$
$s_Q$ $t_Q$

Output

Print $Q$ lines.

The $i$-th line should contain the minimum number of times the tank needs to be fulled while traveling from Town $s_i$ to Town $t_i$. If Town $t_i$ is unreachable, the line should contain $-1$ instead.


Sample Input 1

3 2 5
1 2 3
2 3 3
2
3 2
1 3

Sample Output 1

0
1

To travel from Town $3$ to Town $2$, we can use the second road to reach Town $2$ without fueling the tank on the way.

To travel from Town $1$ to Town $3$, we can first use the first road to get to Town $2$, full the tank, and use the second road to reach Town $3$.


Sample Input 2

4 0 1
1
2 1

Sample Output 2

-1

There may be no road at all.


Sample Input 3

5 4 4
1 2 2
2 3 2
3 4 3
4 5 2
20
2 1
3 1
4 1
5 1
1 2
3 2
4 2
5 2
1 3
2 3
4 3
5 3
1 4
2 4
3 4
5 4
1 5
2 5
3 5
4 5

Sample Output 3

0
0
1
2
0
0
1
2
0
0
0
1
1
1
0
0
2
2
1
0

Input

题意翻译

$n$ 个小镇,$m$ 条双向道路。第 $i$ 条道路从 $a_i$ 通向 $b_i$,长度为 $c_i$。车的油箱容量为 $L$,当行驶到一个镇上时可以选择加满油或者什么都不做。行驶单位长度的距离消耗一单位的油。 现在回答 $Q$ 个问题: - 油箱现在为满,从 $s_i$ 到 $t_i$,最少需要加油多少次,或者输出无解。 $2\le n\le 300$,$0\le m\le n(n - 1)/2$,无重边,无自环。$1\le c_i, L\le 10^9$。

加入题单

算法标签: