poj 3159

来源:互联网 发布:淘宝回收充值卡 编辑:程序博客网 时间:2024/06/07 00:10

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 A, B and c in order, meaning that kid A believed that kid B should 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 2
1 2 5
2 1 4
Sample Output

5
Hint

32-bit signed integer type is capable of doing all arithmetic.
Source

POJ Monthly–2006.12.31, Sempr

大意:
n个人,m组关系,表示i要求j不能比自己多k个。问n最多比1多几个。

分析:
i和j连一条权为k的边,求1到n的最短路。spfa要用栈,就是每搜到一个点,下次就用这个点松弛。

代码:

  const  MaxE=500001;  MaxV=150001;type  rec=record        x,y,w,next:longint;      end;var  n,m,c,q,i,x,y,w:longint;  g:array [1..Maxv] of rec;  ls:array [1..Maxe] of longint;  v,d,list:array [1..maxe] of longint;procedure spfa;var  head,tail,t,i,qe:longint;begin  tail:=1;  list[1]:=1;  for i:=1 to n do  d[i]:=maxlongint;  d[1]:=0;  v[1]:=1;  while tail<>0 do    begin      t:=ls[list[tail]];      qe:=list[tail];      tail:=tail-1;      while t>0 do        with g[t] do          begin            if d[x]+w<d[y] then              begin                d[y]:=d[x]+w;                if v[y]=0 then                  begin                    v[y]:=1;                    tail:=tail+1;                    list[tail]:=y;                  end;              end;            t:=next;          end;      v[qe]:=0;    end;end;procedure print; var i:longint;     max:int64;begin write(d[n]);end;begin   read(n,m);  for i:=1 to m do   begin    read(x,y,w);    g[i].x:=x;    g[i].y:=y;    g[i].w:=w;    g[i].next:=ls[x];    ls[x]:=i;   end;  spfa;  print;end.
0 0
原创粉丝点击