#6. 「2020 AEC Final」D - City Brain

「2020 AEC Final」D - City Brain

题目描述

Prof. Pang works for the City Brain program of Capital Grancel. The road network of Grancel can be represented by an undirected graph. Initially, the speed limit on each road is 1m/s1\,m/s. Prof. Pang can increase the speed limit on a road by 1m/s1\,m/s with the cost of 11 dollar. Prof. Pang has kk dollars. He can spend any nonnegative integral amount of money on each road. If the speed limit on some road is am/sa\,m/s, it takes 1a\frac{1}{a} seconds for anyone to go through the road in either direction.

After Prof. Pang spent his money, Prof. Du starts to travel from city s1s_1 to city t1t_1 and Prof. Wo starts to travel from city s2s_2 to city t2t_2. Help Prof. Pang to spend his money wisely to minimize the sum of minimum time of Prof. Du's travel and Prof. Wo's travel. It is guaranteed that s1s_1 and t1t_1 are connected by at least one path and that s2s_2 and t2t_2 are connected by at least one path.

输入格式

The first line contains three integers n,m,kn,m,k (1n5000,0m5000,0k1091 \leq n \leq 5000, 0 \leq m \leq 5000, 0 \leq k \leq 10^9 ) separated by single spaces denoting the number of vertices, the number of edges in the graph and the number of dollars Prof. Pang has.

Each of the following 𝑚𝑚 lines contains two integers a,ba,b (1a,bn,ab1 \leq a, b \leq n, a \neq b ) separated by a single space denoting the two endpoints of one road. There can be multiple roads between the same pair of cities.

The following line contains four integerss1,𝑡1,s2,t2(1s1,t1,s2,t2n) s_1 , 𝑡_1 , s_2 , t_2 (1 \leq s_1,t_1, s_2,t_2 \leq n ) separated by single spaces denoting the starting vertices and ending vertices of Prof. Du and Prof. Wo's travels.

输出格式

Output one decimal in the only line -- the minimum sum of Prof. Du's travel time and Prof. Wo's travel time. The answer will be considered correct if its absolute or relative error does not exceed 10910^{-9}

样例

输入

1 0 100
1 1 1 1

输出

0.00000000000000019260817