There are n cities in a country connected by m bidirectional roads. The cities are numbered 1,2,…,n and the roads are numbered 1,2,…,m. Road i connects city u_i and city v_i, and its length is w_i meters. Starting from any city, you may reach any other city via the roads.
The roads are built in a special way. Formally, a simple cycle passing through l roads (here, a simple cycle means a cycle such that no cities are visited twice except the start) may be represented as c_1→c_2→⋯→c_l−1→c_l such that for all 1≤i<l, city c_i and city c_i+1 are connected directly by a road, city c_1 and city c_l are connected directly by a road, and for all 1≤i<j≤l, we have c_i=c_j. If l>3, then the roads satisfy the following additional constraint: there exist two non-adjacent cities on the cycle such that the two cities are directly connected by a road, or in other words, there exists 1≤u<v≤l such that v−u≥2, u,v are not 1 and l simultaneously, and city c_u and city c_v are directly connected by a road.
Now the country is going to find a route to renovate between city s and city t. Since the road will be inaccessible during renovation, the country wants to make sure it is possible to reach all other cities starting from any city in the country via the remaining roads during renovation (i.e. roads that are not included in the route to be renovated).
Please find a possible route to renovate and make sure the length is as short as possible.
The first line contains two integers n,m denoting the number of cities and the number of roads. The following m lines contain three integers u_i,v_i,w_i each denoting the endpoints of the roads and the lengths. It is guaranteed that each road connects two different cities, or in other words, u_i=v_i. The last line contains two integers s,t denoting the endpoints of the route to be renovated.
The output contains only one integer denoting the minimum possible length of the route to be renovated satisfying the constraints specified in the problem. If there are no feasible solutions, output -1.
For all test cases, 2≤n≤5×105, 2≤m≤106, s=t, 1≤u_i,v_i≤n, u_i=v_i, 1≤w_i≤109. It is guaranteed for any two roads their endpoints are not entirely the same. It is guaranteed the roads satisfy the conditions specified in the problem.