Codeforces 601A The Two Routes【最短路】

A. 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个站点,任意两个站点之间都是相连的。每经过一条边,花费时间1。现在给出m条火车线,剩下的全是公路。汽车只能走公路,火车只能走火车线。现在火车和汽车同时从站点1出发,目的地是站点n,要求在火车和汽车行驶过程中,除了站点1和n可以同时到达,其它站点都不能同时到达。问是否存在一条方案使得火车和汽车都能到达站点n,若存在输出火车和汽车到达站点n所需的时间,反之输出-1。



思路:设Map[i][j] = 1表示i和j之间是否有火车线相连,反之是公路。则对于Map[1][n],可以分类讨论。

一、Map[i][j] = 1,火车可以从站点1直接到达站点n,我们只需要考虑汽车。

二、Map[i][j] = 0,汽车可以从站点1直接到达站点n,我们只需要考虑火车。

建好图,最后求一次最短路就可以了。


AC代码:


#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#define INF 0x3f3f3f
#define eps 1e-8
#define MAXN (400+10)
#define MAXM (100000)
#define Ri(a) scanf("%d", &a)
#define Rl(a) scanf("%lld", &a)
#define Rf(a) scanf("%lf", &a)
#define Rs(a) scanf("%s", a)
#define Pi(a) printf("%d\n", (a))
#define Pf(a) printf("%.2lf\n", (a))
#define Pl(a) printf("%lld\n", (a))
#define Ps(a) printf("%s\n", (a))
#define W(a) while(a--)
#define CLR(a, b) memset(a, (b), sizeof(a))
#define MOD 1000000007
#define LL long long
#define lson o<<1, l, mid
#define rson o<<1|1, mid+1, r
#define ll o<<1
#define rr o<<1|1
using namespace std;
bool Map[MAXN][MAXN];
int d[MAXN][MAXN];
void Floyd(int n)
{
    for(int k = 1; k <= n; k++)
        for(int i = 1; i <= n; i++)
            for(int j = 1; j <= n; j++)
                d[i][j] = min(d[i][j], d[i][k]+d[k][j]);
}
int main()
{
    int n, m; Ri(n); Ri(m);
    for(int i = 0; i < m; i++)
    {
        int a, b; Ri(a); Ri(b);
        Map[a][b] = Map[b][a] = true;
    }
    if(Map[1][n])
    {
        for(int i = 1; i <= n; i++)
        {
            for(int j = 1; j <= n; j++)
            {
                if(Map[i][j])
                    d[i][j] = INF;
                else
                    d[i][j] = 1;
            }
        }
    }
    else
    {
        for(int i = 1; i <= n; i++)
        {
            for(int j = 1; j <= n; j++)
            {
                if(!Map[i][j])
                    d[i][j] = INF;
                else
                    d[i][j] = 1;
            }
        }
    }
    Floyd(n);
    printf(d[1][n] == INF ? "-1\n" : "%d\n", d[1][n]);
    return 0;
}



你可能感兴趣的:(最短路径,codeforces)