程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> POJ 3159 Candies

POJ 3159 Candies

編輯:C++入門知識

Candies Time Limit: 1500MS Memory Limit: 131072K Total Submissions: 19693 Accepted: 5196 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       知道怎麼建圖就好做多了,求最短路spfa不用隊列用棧 [cpp]   #include <stdio.h>   #include <string.h>   #include <math.h>   int statck[1000000];   int status[320000],d[320000];   struct num   {       int end,val;       int next;   }a[1000000];   int b[320000],n;   int INF=0x7fffffff;   int main()   {       int spfa();       int i,j,m,s,t;       int x,y,val;       while(scanf("%d %d",&n,&m)!=EOF)       {           memset(b,-1,sizeof(b));           for(i=0,j=0;i<=m-1;i++)           {               scanf("%d %d %d",&x,&y,&val);               a[j].end=y;               a[j].val=val;               a[j].next=b[x];               b[x]=j; j++;           }           t=spfa();           printf("%d\n",t);       }       return 0;   }   int spfa()   {       int i,j,top,x,xend;       top=0;       memset(status,0,sizeof(status));       for(i=1;i<=n;i++)       {           d[i]=INF;       }       statck[top++]=1;       status[1]=1;       d[1]=0;       while(top>0)       {           x=statck[--top];           status[x]=0;           for(i=b[x]; i!=-1; i=a[i].next)           {               xend=a[i].end;               if(d[xend]>(d[x]+a[i].val))               {                   d[xend]=d[x]+a[i].val;                   if(!status[xend])                   {                       statck[top++]=xend;                       status[xend]=1;                   }               }           }       }       return d[n];   }  

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved