zoukankan      html  css  js  c++  java
  • 【50.00%】【codeforces 602C】The Two Routes

    time limit per test2 seconds
    memory limit per test256 megabytes
    inputstandard input
    outputstandard 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 ≤ 400, 0 ≤ 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 ≤ n, u ≠ 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.

    Examples
    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.

    【题目链接】:http://codeforces.com/contest/602/problem/C

    【题解】

    铁路和公路中必然有一种有一条从1->n的边
    则那个人先走到n等着.
    然后另外一个人跑最短路就可以了;
    答案就是跑最短路的那个人用的时间.

    【完整代码】

    #include <bits/stdc++.h>
    using namespace std;
    #define lson l,m,rt<<1
    #define rson m+1,r,rt<<1|1
    #define LL long long
    #define rep1(i,a,b) for (int i = a;i <= b;i++)
    #define rep2(i,a,b) for (int i = a;i >= b;i--)
    #define mp make_pair
    #define pb push_back
    #define fi first
    #define se second
    #define rei(x) scanf("%d",&x)
    #define rel(x) scanf("%I64d",&x)
    
    typedef pair<int,int> pii;
    typedef pair<LL,LL> pll;
    
    const int MAXN = 4e2+100;
    const int dx[9] = {0,1,-1,0,0,-1,-1,1,1};
    const int dy[9] = {0,0,0,-1,1,-1,1,-1,1};
    const double pi = acos(-1.0);
    
    int n,m;
    vector <int> G[2][MAXN];
    bool flag[MAXN][MAXN];
    queue <int> dl;
    int dis[MAXN];
    
    int main()
    {
        //freopen("F:\rush.txt","r",stdin);
        rei(n);rei(m);
        rep1(i,1,m)
        {
            int x,y;
            rei(x);rei(y);
            flag[x][y] = flag[y][x] = true;
            G[0][x].pb(y);
            G[0][y].pb(x);
        }
        rep1(i,1,n)
            rep1(j,1,n)
                if (i!=j && !flag[i][j])
                    G[1][i].pb(j);
        int bo = 0;
        if (flag[1][n])
            bo = 1;
        memset(dis,255,sizeof dis);
        dl.push(1);
        dis[1] = 0;
        while (!dl.empty())
        {
            int x = dl.front();
            dl.pop();
            for (auto y:G[bo][x])
            {
                if (dis[y]==-1 || dis[y] > dis[x]+1)
                {
                    dis[y] = dis[x] + 1;
                    dl.push(y);
                }
            }
        }
        cout << dis[n]<<endl;
        return 0;
    }
  • 相关阅读:
    时间工厂[XDU1013]
    奇妙的旅行[XDU1012]
    金子上的友情[XDU1011]
    素数环问题[XDU1010]
    转盘游戏[XDU1006]
    跳舞毯[XDU1005]
    Tri Tiling[HDU1143]
    A Walk Through the Forest[HDU1142]
    核反应堆[HDU2085]
    How Many Trees?[HDU1130]
  • 原文地址:https://www.cnblogs.com/AWCXV/p/7626807.html
Copyright © 2011-2022 走看看