国产探花免费观看_亚洲丰满少妇自慰呻吟_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;}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 潞西市| 余姚市| 永安市| 那曲县| 阿瓦提县| 浙江省| 交城县| 云南省| 建瓯市| 中宁县| 福建省| 岳阳县| 常宁市| 平度市| 合肥市| 盱眙县| 怀柔区| 读书| 祁东县| 阿合奇县| 修武县| 禄劝| 新干县| 南雄市| 德昌县| 霸州市| 潜江市| 得荣县| 麦盖提县| 横山县| 曲水县| 乐陵市| 舞钢市| 普格县| 蒙自县| 孙吴县| 普宁市| 六盘水市| 澳门| 博兴县| 竹溪县|