LG2865 [USACO06NOV]路障Roadblocks

题意

Bessie has moved to a small farm and sometimes enjoys returning to visit one of her best friends. She does not want to get to her old home too quickly, because she likes the scenery along the way. She has decided to take the second-shortest rather than the shortest path. She knows there must be some second-shortest path.

The countryside consists of R (1 ≤ R ≤ 100,000) bidirectional roads, each linking two of the N (1 ≤ N ≤ 5000) intersections, conveniently numbered 1..N. Bessie starts at intersection 1, and her friend (the destination) is at intersection N.

The second-shortest path may share roads with any of the shortest paths, and it may backtrack i.e., use the same road or intersection more than once. The second-shortest path is the shortest path whose length is longer than the shortest path(s) (i.e., if two or more shortest paths exist, the second-shortest path is the one whose length is longer than those but no longer than any other path).

贝茜把家搬到了一个小农场,但她常常回到FJ的农场去拜访她的朋友。贝茜很喜欢路边的风景,不想那么快地结束她的旅途,于是她每次回农场,都会选择第二短的路径,而不象我们所习惯的那样,选择最短路。 贝茜所在的乡村有R(1<=R<=100,000)条双向道路,每条路都联结了所有的N(1<=N<=5000)个农场中的某两个。贝茜居住在农场1,她的朋友们居住在农场N(即贝茜每次旅行的目的地)。 贝茜选择的第二短的路径中,可以包含任何一条在最短路中出现的道路,并且,一条路可以重复走多次。当然咯,第二短路的长度必须严格大于最短路(可能有多条)的长度,但它的长度必须不大于所有除最短路外的路径的长度。

分析

类似最短路松弛,维护最短路和次短路,跑SPFA,松弛的时候分类讨论就行了。

注意要保证次短路严格大于最短路。

时间复杂度\(O(nm)\),当然,此题数据很水。

代码

#include<bits/stdc++.h>
#define rg register
#define il inline
#define co const
template<class T>il T read()
{
    rg T data=0;
    rg int w=1;
    rg char ch=getchar();
    while(!isdigit(ch))
    {
        if(ch=='-')
            w=-1;
        ch=getchar();
    }
    while(isdigit(ch))
    {
        data=data*10+ch-'0';
        ch=getchar();
    }
    return data*w;
}
template<class T>il T read(rg T&x)
{
    return x=read<T>();
}
typedef long long ll;
co int INF=0x3f3f3f3f;

co int N=5001;
typedef std::pair<int,int> pii;
std::vector<pii>g[N];
int fir[N],sec[N];
bool inq[N];
std::queue<int>Q;

int main()
{
//  freopen(".in","r",stdin);
//  freopen(".out","w",stdout);
    int n,r;
    read(n),read(r);
    for(int i=1;i<=r;++i)
    {
        int x,y,w;
        read(x),read(y),read(w);
        g[x].push_back(pii(y,w));
        g[y].push_back(pii(x,w));
    }
    std::fill(fir+2,fir+n+2,INF);
    std::fill(sec+1,sec+n+2,INF);
    Q.push(1);
    inq[1]=1;
    while(Q.size())
    {
        int x=Q.front();Q.pop();
        inq[x]=0;
        for(int i=0;i<g[x].size();++i)
        {
            int y=g[x][i].first,w=g[x][i].second;
            if(fir[x]+w<fir[y])
            {
                sec[y]=fir[y],fir[y]=fir[x]+w; // edit 1
                if(sec[x]+w<sec[y])
                    sec[y]=sec[x]+w;
                if(!inq[y])
                {
                    Q.push(y);
                    inq[y]=1;
                }
            }
            else if(fir[x]+w>fir[y]&&fir[x]+w<sec[y])
            {
                sec[y]=fir[x]+w;
                if(!inq[y])
                {
                    Q.push(y);
                    inq[y]=1;
                }
            }
            else if(sec[x]+w<sec[y])
            {
                sec[y]=sec[x]+w;
                if(!inq[y])
                {
                    Q.push(y);
                    inq[y]=1;
                }
            }
        }
    }
    printf("%d\n",sec[n]);
    return 0;
}

猜你喜欢

转载自www.cnblogs.com/autoint/p/10321391.html
今日推荐