시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 256 MB116654.545%

문제

Per and Pål are friends, and like to hang out together. They are also very impatient, so they always take the shortest possible way when they need to go somewhere.

It’s the end of the school day, and they need to go home. Naturally, they want to arrive at home as early as possible. They also want to maximize the time they walk together while walking towards their homes. You have been asked to write a computer program that calculates the maximal time they can walk together. Their neighbourhood is modelled as a graph where intersections are nodes and roads are edges. The roads are bidirectional, and it takes the same time to traverse a road in both directions. All important destinations happen to be located at an intersection. Also, the school and the two homes are never located at the same intersection. There exists a path between every pair of intersections.

입력

The first line of the input consists of a single integer T, the number of test cases. The next line contains two integers N and M, the number of intersections and the number of bidirectional roads in the city, respectively. The following line contains three integers S, P and Q, indicating the position of the school, Per’s home and Pål’s home, respectively. The next M lines contain three integers ai, bi and ti, indicating that there is a bidirectional road between intersections ai and bi which takes ci minutes to traverse. All intersections are numbered from 0 to N − 1, inclusive.

  • 0 < T ≤ 100
  • 3 ≤ N ≤ 2000
  • N − 1 ≤ M ≤ min(N(N-1)/2, 10000)
  • 0 ≤ ai < bi < N
  • 0 < ci ≤ 1000
  • 0 ≤ S, P, Q, ai, bi < N

출력

For each test case, output the length of the longest distance Per and P˚al can walk together while still arriving at their own homes as fast as possible.

예제 입력 1

2
4 5
0 2 3
0 1 100
1 2 50
1 3 40
0 2 500
0 3 500
4 5
0 2 3
0 1 100
1 2 50
1 3 40
0 2 10
0 3 10

예제 출력 1

100
0