Codeforces Round #333 (Div. 2) C. The Two Routes

time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

In Absurdistan, there are n towns (numbered 1 through n) and m bidirectional railways. There is also an absurdly simple road network — for each pair of different towns x and y, there is a bidirectional road between towns x and y if and only if there is no railway between them. Travelling to a different town using one railway or one road always takes exactly one hour.

A train and a bus leave town 1 at the same time. They both have the same destination, town n, and don't make any stops on the way (but they can wait in town n). The train can move only along railways and the bus can move only along roads.

You've been asked to plan out routes for the vehicles; each route can use any road/railway multiple times. One of the most important aspects to consider is safety — in order to avoid accidents at railway crossings, the train and the bus must not arrive at the same town (except town n) simultaneously.

Under these constraints, what is the minimum number of hours needed for both vehicles to reach town n (the maximum of arrival times of the bus and the train)? Note, that bus and train are not required to arrive to the town n at the same moment of time, but are allowed to do so.

Input

The first line of the input contains two integers n and m (2 ≤ n ≤ 4000 ≤ m ≤ n(n - 1) / 2) — the number of towns and the number of railways respectively.

Each of the next m lines contains two integers u and v, denoting a railway between towns u and v (1 ≤ u, v ≤ nu ≠ v).

You may assume that there is at most one railway connecting any two towns.

Output

Output one integer — the smallest possible time of the later vehicle's arrival in town n. If it's impossible for at least one of the vehicles to reach town n, output  - 1.

Sample test(s)
input
4 2
1 3
3 4
output
2
input
4 6
1 2
1 3
1 4
2 3
2 4
3 4
output
-1
input
5 5
4 2
3 5
4 5
5 1
1 2
output
3
Note

In the first sample, the train can take the route  and the bus can take the route . Note that they can arrive at town 4 at the same time.

In the second sample, Absurdistan is ruled by railwaymen. There are no roads, so there's no way for the bus to reach town 4.


题意:有n个城市有m条铁路,有铁路就没有公路(没有铁路的地方有公路)。求从1到n,A走铁路的最短时间x,B走公路的最短时间y(中间不能停但是可以在n点等,A和B不能再中间相遇,n点除外),求A和B在n点相遇是的最短时间。
坑爹的题意,看了我半天。
1直接到n如果没有公路就有铁路(关键),所以不要被题目迷惑了,这样就不用考虑中间相遇的问题了。
就是一个最短路径的问题了。
还是太浮躁了没有好好分析题目。
#include
          
          
           
           
#include
           
           
            
            
#include
            
            
             
             
#include
             
             
              
              
#include
              
              
                using namespace std; const int N = 444; int map1[N][N]; int map2[N][N]; const int int_max = (1<<20)-1; int distanc[N];///到起点的距离 int Dijkstra(int star, int num, int map[N][N]) { int i, j; bool s[N]; for(i = 0; i < num; i++)///初始化 { s[i] = 0; distanc[i] = map[star][i]; } s[star] = 1; int u = star; for(i = 1; i < num; i++)///只有num-1个点 { ///选择一个最小的点 int DMin = int_max; int v = u; for(j = 0; j < num; j++) { if(!s[j] && distanc[j] < DMin) { v = j; DMin = distanc[j]; } } s[v] = 1; u = v; ///跟新 for(j = 0; j < num; j++) { if(!s[j] && map[v][j] < int_max) { int temp = map[v][j] + distanc[v]; if(distanc[j] > temp) { distanc[j] = temp; } } } } return 0; } void debug(int n) { for(int i = 0; i < n; i++) printf("%d ", distanc[i]); printf("\n"); } int main(void) { int i, j; int n, m; scanf("%d%d", &n, &m); int x, y; for(i = 0; i < n; i++) for(j = 0; j < n; j++) { map1[i][j] = int_max; map2[i][j] = int_max; } for(i = 0; i < m; i++) { scanf("%d%d", &x, &y); map1[x-1][y-1] = 1; map1[y-1][x-1] = 1; } if(map1[0][n-1] == 1) { for(i = 0; i < n; i++) { for(j = 0; j < n; j++) { if(i == j) continue; if(map1[i][j] != 1) { map2[i][j] = 1; // printf("%d--%d\t", i, j); } } } Dijkstra(0, n, map2); // debug(n); // printf("\t111\n"); if(distanc[n-1] >= int_max) { printf("-1\n"); } else { printf("%d\n", distanc[n-1]); } } else { Dijkstra(0, n, map1); // debug(n); if(distanc[n-1] >= int_max) { printf("-1\n"); } else { printf("%d\n", distanc[n-1]); } } return 0; } 
              
             
             
            
            
           
           
          
          

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值