解题报告
题意:
先输入n,m
接下来m行,每行输入A,B,C
输入A B C,表示孩子B最多比孩子A多C块蛋糕,问孩子1与孩子N最多相差多少块蛋糕!
思路:
求解b-a<=w方程组
源点为1
spfa+queue超时,spfa+queue+slf还超时,用stack却过了。
#include <iostream> #include <cstring> #include <cstdio> #include <deque> #include <stack> #define N 30001 #define M 150000 #define inf 0x3f3f3f3f using namespace std; int head[N],dis[N],vis[N]; int cnt,n,m; struct node { int v,w,next; } edge[M]; void add(int u,int v,int w) { edge[cnt].v=v,edge[cnt].w=w; edge[cnt].next=head[u],head[u]=cnt++; } void SF() { stack<int>Q; memset(dis,inf,sizeof(dis)); memset(vis,0,sizeof(vis)); dis[1]=0,vis[1]=1; Q.push(1); while(!Q.empty()) { int u=Q.top(); Q.pop(); vis[u]=0; for(int i=head[u]; i!=-1; i=edge[i].next) { int v=edge[i].v; if(dis[v]>dis[u]+edge[i].w) { dis[v]=dis[u]+edge[i].w; if(!vis[v]) { vis[v]=1; Q.push(v); } } } } } int main() { int i,j,u,v,w; while(~scanf("%d%d",&n,&m)) { cnt=0; memset(head,-1,sizeof(head)); for(i=1; i<=m; i++) { scanf("%d%d%d",&u,&v,&w); add(u,v,w); } SF(); printf("%d\n",dis[n]); } return 0; }
Candies
Time Limit: 1500MS | Memory Limit: 131072K | |
Total Submissions: 23056 | Accepted: 6200 |
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.