#P7800. Deliver the Cake
Deliver the Cake
Deliver the Cake
Problem Description
It is Zhang3's birthday! Zhang3 has bought a birthday cake and now it's time to take it home. There are villages, labeled . There are bidirectional roads, the of which connects village , and it is meter(s) long. The bakery locates at village and Zhang3's home locates at village . So Zhang3 wants to carry the cake from to . She can carry the cake either with her left hand or with her right hand. She can switch to the other hand during the trip, which takes extra second(s) each time (when she's performing this action, she must stay in her place). Switching is allowed at any place, including the middle of the roads. She can do this as many times as she like, or don't do it at all. Some villages are LEFT. When Zhang3 is at a LEFT village, she must carry the cake with her left hand at the moment. In the same way, some other villages are RIGHT, she must carry with her right hand when she's at these villages. The rest villages are called MIDDLE. There's no special rules at MIDDLE villages. Zhang3 can start and finish with any hand carrying the cake. However, if or is not MIDDLE, their special rules must be followed. Please help Zhang3 find a way to take the cake home, with the minimum amount of spent time.
Input
The first line of the input gives the number of test cases, . test cases follow. For each test case, the first line contains five integers $n, m, s, t, x \; (1 \le n \le 10^5, \; 1 \le m \le 2 \times 10^5, \; 1 \le x \le 10^9)$, representing the number of villages, the number of roads, the bakery's location, home's location, and the time spent for each switching. The next line contains a string of length , describing the type of each village. The character is either representing village is LEFT, or representing MIDDLE, or representing RIGHT. Finally, lines follow, the of which contains three integers , denoting a road connecting village and of length . It is guaranteed that can be reached from . The sum of in all test cases doesn't exceed . The sum of doesn't exceed .
Output
For each test case, print a line with an integer, representing the minimum amount of spent time (in seconds).
Sample Input
1
3 3 1 3 100
LRM
1 2 10
2 3 10
1 3 100
Sample Output
100
Source
2020 Multi-University Training Contest 4