国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

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;}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 隆子县| 惠州市| 饶阳县| 丘北县| 广宗县| 介休市| 株洲县| 陈巴尔虎旗| 香河县| 电白县| 宁城县| 嘉鱼县| 宜川县| 静安区| 泸西县| 宁远县| 静宁县| 泌阳县| 台北县| 阳春市| 溆浦县| 乌鲁木齐市| 西和县| 吉林省| 茌平县| 白水县| 成武县| 上思县| 会昌县| 镇安县| 呼玛县| 正定县| 黑龙江省| 永顺县| 九江县| 新巴尔虎左旗| 花莲县| 博爱县| 宝坻区| 临海市| 江达县|