Travel
The country frog lives in has n
towns which are conveniently numbered by 1,2,…,n
.
Among n(n−1)2
pairs of towns, m of them are connected by bidirectional highway, which needs a minutes to travel. The other pairs are connected by railway, which needs b
minutes to travel.
Find the minimum time to travel from town 1
to town n
.
Input
The input consists of multiple tests. For each test:
The first line contains 4
integers n,m,a,b (2≤n≤105,0≤m≤5⋅105,1≤a,b≤109). Each of the following m lines contains 2 integers ui,vi, which denotes cities ui and vi are connected by highway. (1≤ui,vi≤n,ui≠vi
).
Output
For each test, write 1
integer which denotes the minimum time.
Sample Input
3 2 1 3 1 2 2 3 3 2 2 3 1 2 2 3
Sample Output
2 3 分析: 补图最短路好题; 题意为给一个图,原图的边权为a,补图的边权为b,求在完全图里1到n的最短路; 首先1到n的最短路上的边权只全部由a或b构成; 这样就是原图补图分别求1到n的最短路; 原图bfs即可; 补图考虑到到当前点只会更新和之前的点在原图上有边而和当前点无边的点的情况; 这样更新后点是越来越少的,用set存点判断即可; 代码:
#include#include #include #include #include #include #include #include #include #include #include