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.
实际上就是求1-n的最短路径,唯一难点在于数据会卡spfa+queue,提交结果显示超时,改用spfa+stack可过。
#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<iostream>
#include<queue>
#include<stack>
using namespace std;
#define INF 1<<30
#define LL long long
#define maxn 30010
int used[maxn],head[maxn],inqueue[maxn],dis[maxn],n,m;
struct node
{
int to,len,next;
}edge[150010];
void init()
{
memset(used,0,sizeof(used));
memset(head,-1,sizeof(head));
memset(inqueue,0,sizeof(inqueue));
int k=0;
for(int i=1;i<=m;i++)
{
int st,en,len;
scanf("%d%d%d",&st,&en,&len);
edge[k].to=en;
edge[k].len=len;
edge[k].next=head[st];
head[st]=k++;
}
}
void spfa(int start)
{
for(int i=1;i<=n;i++)
dis[i]=INF;
dis[start]=0;
used[start]=1;
queue<int> q;
q.push(start);
inqueue[start]++;
while(!q.empty())
{
int top=q.front();
q.pop();
used[top]=0;
for(int k=head[top];k!=-1;k=edge[k].next)
{
if(dis[edge[k].to]>dis[top]+edge[k].len)
{
dis[edge[k].to]=dis[top]+edge[k].len;
if(!used[edge[k].to])
{
used[edge[k].to]=1;
q.push(edge[k].to);
}
}
}
}
}
int main()
{
while(scanf("%d%d",&n,&m)!=EOF)
{
init();
spfa(1);
printf("%d\n",dis[n]);
}
return 0;
}
本文解决了一个有趣的问题:如何在满足所有小朋友的要求下,使两个特定小朋友得到的糖果数量之差尽可能大。通过使用SPFA算法并结合栈进行优化,有效地解决了这一问题。
342

被折叠的 条评论
为什么被折叠?



