首页 > 学院 > 开发设计 > 正文

poj Candies(差分约束,spfa栈)

2019-11-08 18:48:21
字体:
来源:转载
供稿:网友
Candies

Description

During the kindergarten days, flymouse was the monitor of his class. Occasionally the head-teacher brought the kids of flymouse’s class a large bag of candies and had flymouse distribute them. All the kids loved candies very much and often compared the numbers of candies they got with others. A kid A could had the idea that though it might be the case that another kid B was better than him in some aspect and therefore had a reason for deserving more candies than he did, he should never get a certain number of candies fewer than B did no matter how many candies he actually got, otherwise he would feel dissatisfied and go to the head-teacher to complain about flymouse’s biased distribution.

snoopy shared class with flymouse at that time. flymouse always compared the number of his candies with that of snoopy’s. He wanted to make the difference between the numbers as large as possible while keeping every kid satisfied. Now he had just got another bag of candies from the head-teacher, what was the largest difference he could make out of it?

Input

The input contains a single test cases. The test cases starts with a line with two integers N and M not exceeding 30 000 and 150 000 respectively. N is the number of kids in the class and the kids were numbered 1 through N. snoopy and flymouse were always numbered 1 and N. Then follow M lines each holding three integers AB and c in order, meaning that kid A believed that kid Bshould never get over c candies more than he did.

Output

Output one line with only the largest difference desired. The difference is guaranteed to be finite.

Sample Input

2 21 2 52 1 4

Sample Output

5ps:典型的差分约束问题,坑点就是queue会wr,要用stack。。代码:
#include<stdio.h>#include<string.h>#include<stack>using namespace std;#define maxn 30000+10#define maxv 150000+10const int inf=0x3f3f3f3f;int n,m,len;bool inq[maxn];int d[maxn],first[maxn];struct node{    int v,w,next;}G[maxv];void spfa(int st){    for(int i=1;i<=n;i++)    {        inq[i]=0;        d[i]=inf;    }    d[st]=0,inq[st]=1;    stack<int>q;    q.push(st);    while(!q.empty())    {        st=q.top();        inq[st]=0;        q.pop();        for(int i=first[st];i!=-1;i=G[i].next)        {            int v=G[i].v,w=G[i].w;            if(d[v]>d[st]+w)            {                d[v]=d[st]+w;                if(!inq[v])                {                    inq[v]=1;                    q.push(v);                }            }        }    }    PRintf("%d/n",d[n]);}void add_egde(int u,int v,int w){    G[len].v=v,G[len].w=w;    G[len].next=first[u];    first[u]=len++;}int main(){    while(~scanf("%d%d",&n,&m))    {        memset(first,-1,sizeof(first));        int u,v,w,i;        len=1;        for(i=1;i<=m;i++)        {            scanf("%d%d%d",&u,&v,&w);            add_egde(u,v,w);        }        spfa(1);    }    return 0;}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表