最短路和次短路的条数(dijstra算法或spfa算法)POJ3463

来源:互联网 发布:nginx与lvs 编辑:程序博客网 时间:2024/05/16 09:57

http://poj.org/problem?id=3463

Sightseeing
Time Limit: 2000MS Memory Limit: 65536KTotal Submissions: 7252 Accepted: 2581

Description

Tour operator Your Personal Holiday organises guided bus trips across the Benelux. Every day the bus moves from one city S to another city F. On this way, the tourists in the bus can see the sights alongside the route travelled. Moreover, the bus makes a number of stops (zero or more) at some beautiful cities, where the tourists get out to see the local sights.

Different groups of tourists may have different preferences for the sights they want to see, and thus for the route to be taken from S to F. Therefore, Your Personal Holiday wants to offer its clients a choice from many different routes. As hotels have been booked in advance, the starting city S and the final city F, though, are fixed. Two routes from S to F are considered different if there is at least one road from a city A to a city B which is part of one route, but not of the other route.

There is a restriction on the routes that the tourists may choose from. To leave enough time for the sightseeing at the stops (and to avoid using too much fuel), the bus has to take a short route from S to F. It has to be either a route with minimal distance, or a route which is one distance unit longer than the minimal distance. Indeed, by allowing routes that are one distance unit longer, the tourists may have more choice than by restricting them to exactly the minimal routes. This enhances the impression of a personal holiday.

For example, for the above road map, there are two minimal routes from S = 1 to F = 5: 1 → 2 → 5 and 1 → 3 → 5, both of length 6. There is one route that is one distance unit longer: 1 → 3 → 4 → 5, of length 7.

Now, given a (partial) road map of the Benelux and two cities S and F, tour operator Your Personal Holiday likes to know how many different routes it can offer to its clients, under the above restriction on the route length.

Input

The first line of the input file contains a single number: the number of test cases to follow. Each test case has the following format:

  • One line with two integers N and M, separated by a single space, with 2 ≤ N ≤ 1,000 and 1 ≤ M ≤ 10, 000: the number of cities and the number of roads in the road map.

  • M lines, each with three integers AB and L, separated by single spaces, with 1 ≤ AB ≤ NA ≠ B and 1 ≤ L ≤ 1,000, describing a road from city A to city B with length L.

    The roads are unidirectional. Hence, if there is a road from A to B, then there is not necessarily also a road from B to A. There may be different roads from a city A to a city B.

  • One line with two integers S and F, separated by a single space, with 1 ≤ SF ≤ N and S ≠ F: the starting city and the final city of the route.

    There will be at least one route from S to F.

Output

For every test case in the input file, the output should contain a single number, on a single line: the number of routes of minimal length or one distance unit longer. Test cases are such, that this number is at most 109 = 1,000,000,000.

Sample Input

25 81 2 31 3 21 4 52 3 12 5 33 4 23 5 44 5 31 55 62 3 13 2 13 1 104 5 25 2 75 2 74 1

Sample Output

32

题意:给出一个有向图,起点和终点,然后询问最短路和次短路比最短路大1的总条数;

第一种:dijstra

#pragma comment(linker, "/STACK:1024000000,1024000000")#include"stdio.h"#include"string.h"#include"iostream"#include"map"#include"string"#include"queue"#include"stdlib.h"#include"algorithm"#include"vector"#include"math.h"#define M 1009#define eps 1e-5#define mod 100000000#define inf 0x3f3f3f3fusing namespace std;struct node{    int v,w;    node(int vv,int ww)    {        v=vv;        w=ww;    }};vector<node>edge[M];int dis[M][2],vis[M][2],num[M][2];void dij(int s,int t,int n){    int i,j;    memset(dis,inf,sizeof(dis));    memset(vis,0,sizeof(vis));    dis[s][0]=0;    num[s][0]=num[s][1]=1;    for(i=1;i<=n*2;i++)    {        int mini=inf;        int u=-1;        int flag;        for(j=1;j<=n;j++)        {            if(!vis[j][0]&&mini>dis[j][0])            {                flag=0;                mini=dis[j][0];                u=j;            }            else if(!vis[j][1]&&mini>dis[j][1])            {                flag=1;                mini=dis[j][1];                u=j;            }        }        if(u==-1)break;        vis[u][flag]=1;        for(j=0;j<(int)edge[u].size();j++)        {            int v=edge[u][j].v;            int w=edge[u][j].w;            if(dis[v][0]>mini+w)            {                dis[v][1]=dis[v][0];                dis[v][0]=mini+w;                num[v][1]=num[v][0];                num[v][0]=num[u][flag];            }            else if(dis[v][0]==mini+w)            {                num[v][0]+=num[u][flag];            }            else if(dis[v][1]>mini+w)            {                dis[v][1]=mini+w;                num[v][1]=num[u][flag];            }            else if(dis[v][1]==mini+w)            {                num[v][1]+=num[u][flag];            }        }    }    int ans;    if(dis[t][1]==dis[t][0]+1)        ans=num[t][0]+num[t][1];    else        ans=num[t][0];    //printf("%d %d %d %d\n",dis[t][0],dis[t][1],num[t][0],num[t][1]);    printf("%d\n",ans);}int main(){    int T,n,m,i;    cin>>T;    while(T--)    {        scanf("%d%d",&n,&m);        for(i=0;i<=n;i++)            edge[i].clear();        for(i=0;i<m;i++)        {            int u,v,w;            scanf("%d%d%d",&u,&v,&w);            edge[u].push_back(node(v,w));        }        int s,t;        scanf("%d%d",&s,&t);        dij(s,t,n);    }    return 0;}

第二种:spfa

#pragma comment(linker, "/STACK:1024000000,1024000000")#include"stdio.h"#include"string.h"#include"iostream"#include"map"#include"string"#include"queue"#include"stdlib.h"#include"algorithm"#include"vector"#include"math.h"#define M 1009#define eps 1e-5#define mod 100000000#define inf 0x3f3f3f3fusing namespace std;struct node{    int v,w;    node(int vv,int ww)    {        v=vv;        w=ww;    }};vector<node>edge[M];int dis[M][2],vis[M][2],num[M][2];struct Node{    int v,k,dist;    bool friend operator<(Node a,Node b)    {        return a.dist>b.dist;    }};void spfa(int s,int t,int n){    memset(dis,inf,sizeof(dis));    memset(vis,0,sizeof(vis));    priority_queue<Node>q;    dis[s][0]=0;    num[s][0]=num[s][1]=1;    Node cur;    cur.v=s;    cur.k=0;    cur.dist=0;    q.push(cur);    while(!q.empty())    {        cur=q.top();        q.pop();        if(vis[cur.v][cur.k])continue;        vis[cur.v][cur.k]=1;        //printf("%d %d\n",cur.v,cur.k);        for(int i=0;i<(int)edge[cur.v].size();i++)        {            int v=edge[cur.v][i].v;            int w=edge[cur.v][i].w;            Node now;            if(dis[v][0]>dis[cur.v][cur.k]+w)            {                dis[v][1]=dis[v][0];                num[v][1]=num[v][0];                if(dis[v][1]<inf)                {                    now.v=v;                    now.k=1;                    now.dist=dis[v][1];                    q.push(now);                }                dis[v][0]=dis[cur.v][cur.k]+w;                num[v][0]=num[cur.v][cur.k];                now.v=v;                now.k=0;                now.dist=dis[v][0];                q.push(now);            }            else if(dis[v][0]==dis[cur.v][cur.k]+w)            {                num[v][0]+=num[cur.v][cur.k];            }            else if(dis[v][1]>dis[cur.v][cur.k]+w)            {                dis[v][1]=dis[cur.v][cur.k]+w;                num[v][1]=num[cur.v][cur.k];                Node now;                now.v=v;                now.k=1;                now.dist=dis[v][1];                q.push(now);            }            else if(dis[v][1]==dis[cur.v][cur.k]+w)            {                num[v][1]+=num[cur.v][cur.k];            }        }    }    int ans;    //printf("%d %d %d %d\n",dis[t][0],dis[t][1],num[t][0],num[t][1]);    if(dis[t][1]==dis[t][0]+1)        ans=num[t][0]+num[t][1];    else        ans=num[t][0];    printf("%d\n",ans);}int main(){    int T,n,m,i;    cin>>T;    while(T--)    {        scanf("%d%d",&n,&m);        for(i=0;i<=n;i++)            edge[i].clear();        for(i=0;i<m;i++)        {            int u,v,w;            scanf("%d%d%d",&u,&v,&w);            edge[u].push_back(node(v,w));        }        int s,t;        scanf("%d%d",&s,&t);        spfa(s,t,n);    }    return 0;}


0 0
原创粉丝点击