【POJ 3159】Candies

xiaoxiao2021-02-28  75

Candies Time Limit: 1500MS Memory Limit: 131072K Total Submissions: 32592 Accepted: 9110 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.

差分约束 建边直接建就好了…… 唯一的问题是 spfa队列会T dij_heap也会T 结果改成栈就A掉了 暂时没有证明关于栈和队列的速度。。

#include <iostream> #include <cstdio> #include <queue> #include <stack> #include <cstring> #include <algorithm> using namespace std; const int MAXN = 300005; int n,m,s,e,f,t,v,tot = 0; int first[MAXN],nxt[MAXN],dis[MAXN]; bool use[MAXN]; struct edge{ int f,t,v; }l[MAXN]; void init(){ memset(first,0xff,sizeof(first)); tot = 0; return; } int read(){ int x = 0,f = 1; char ch; ch = getchar(); while(!('0' <= ch && ch <= '9')){ if(ch == '-') f = -1; ch = getchar();} while('0' <= ch && ch <= '9') x = (x << 3) + (x << 1) + (ch - '0'),ch = getchar(); return x * f; } void build(int f,int t,int v){ l[++ tot] = (edge){f,t,v}; nxt[tot] = first[f]; first[f] = tot; return; } stack < int > q; void spfa(int s){ while(!q.empty()) q.pop(); memset(use,0,sizeof(use)); memset(dis,0x3f,sizeof(dis)); use[s] = true; dis[s] = 0; q.push(s); while(!q.empty()){ int u = q.top(); q.pop(); use[u] = false; for(int i = first[u]; i != -1; i = nxt[i]){ int w = l[i].t; if(dis[w] > dis[u] + l[i].v){ dis[w] = dis[u] + l[i].v; if(use[w]) continue; q.push(w); use[w] = true; } } } return; } int main(){ n = read(); m = read(); init(); for(int i = 1; i <= m; i ++){ f = read(); t = read(); v = read(); build(f,t,v); } spfa(1); printf("%d\n",dis[n]); return 0; }
转载请注明原文地址: https://www.6miu.com/read-26863.html

最新回复(0)