Problem11411--CF715 - B. Complete The Graph

11411: CF715 - B. Complete The Graph

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

ZS the Coder has drawn an undirected graph of $n$ vertices numbered from $0$ to $n- 1$ and $m$ edges between them. Each edge of the graph is weighted, each weight is a positive integer.
The next day, ZS the Coder realized that some of the weights were erased! So he wants to reassign positive integer weight to each of the edges which weights were erased, so that the length of the shortest path between vertices $s$ and $t$ in the resulting graph is exactly $L$. Can you help him?

Input

The first line contains five integers $n,m,L,s,t\ (2 ≤n≤ 1000,  1 ≤m≤ 10 000,  1 ≤L≤ 10^9,  0 ≤s,t≤n- 1,s≠t)$ — the number of vertices, number of edges, the desired length of shortest path, starting vertex and ending vertex respectively.
Then, $m$ lines describing the edges of the graph follow. $i$-th of them contains three integers, $u_i,v_i,w_i\ (0 ≤u_i,v_i≤n- 1,\ u_i≠v_i, 0 ≤w_i≤ 10^9)$. $u_i$ and $v_i$ denote the endpoints of the edge and $w_i$ denotes its weight. If $w_i$ is equal to $0$ then the weight of the corresponding edge was erased.
It is guaranteed that there is at most one edge between any pair of vertices.

Output

Print "NO" (without quotes) in the only line if it's not possible to assign the weights in a required way.
Otherwise, print "YES" in the first line. Next $m$ lines should contain the edges of the resulting graph, with weights assigned to edges which weights were erased. $i$-th of them should contain three integers $u_i, v_i, w_i$, denoting an edge between vertices $u_i$ and $v_i$ of weight $w_i$. The edges of the new graph must coincide with the ones in the graph from the input. The weights that were not erased must remain unchanged whereas the new weights can be any positive integer not exceeding $10^{18}$. The order of the edges in the output doesn't matter. The length of the shortest path between $s$ and $t$ must be equal to $L$.
If there are multiple solutions, print any of them.

Sample 1 Input

5 5 13 0 4
0 1 5
2 1 2
3 2 3
1 4 0
4 3 4

Sample 1 Output

YES
0 1 5
2 1 2
3 2 3
1 4 8
4 3 4
 the graph in the sample case looks like

there is only one missing edge weight. Placing the weight of 8 gives a shortest path from 0 to 4 of length 13.

Sample 2 Input

2 1 123456789 0 1
0 1 0

Sample 2 Output

YES
0 1 123456789
there is only a single edge. Clearly, the only way is to replace the missing weight with 123456789.

Sample 3 Input

2 1 999999999 1 0
0 1 1000000000

Sample 3 Output

NO
there is no weights to assign but the length of the shortest path doesn't match the required value, so the answer is "NO".

HINT

Source/Category