贪心

来源:互联网 发布:网络布线技术要求 编辑:程序博客网 时间:2024/04/20 07:55

原题http://acm.hdu.edu.cn/showproblem.php?pid=4296、

Buildings

Time Limit: 5000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1822    Accepted Submission(s): 722


Problem Description
  Have you ever heard the story of Blue.Mary, the great civil engineer? Unlike Mr. Wolowitz, Dr. Blue.Mary has accomplished many great projects, one of which is the Guanghua Building.
  The public opinion is that Guanghua Building is nothing more than one of hundreds of modern skyscrapers recently built in Shanghai, and sadly, they are all wrong. Blue.Mary the great civil engineer had try a completely new evolutionary building method in project of Guanghua Building. That is, to build all the floors at first, then stack them up forming a complete building.
  Believe it or not, he did it (in secret manner). Now you are face the same problem Blue.Mary once stuck in: Place floors in a good way.
  Each floor has its own weight wi and strength si. When floors are stacked up, each floor has PDV(Potential Damage Value) equal to (Σwj)-si, where (Σwj) stands for sum of weight of all floors above.
  Blue.Mary, the great civil engineer, would like to minimize PDV of the whole building, denoted as the largest PDV of all floors.
  Now, it’s up to you to calculate this value.


 

Input
  There’re several test cases.
  In each test case, in the first line is a single integer N (1 <= N <= 105) denoting the number of building’s floors. The following N lines specify the floors. Each of them contains two integers wi and si (0 <= wi, si <= 100000) separated by single spaces.
  Please process until EOF (End Of File).


 

Output
  For each test case, your program should output a single integer in a single line - the minimal PDV of the whole building.
  If no floor would be damaged in a optimal configuration (that is, minimal PDV is non-positive) you should output 0.


 

Sample Input
310 62 35 422 22 2310 32 53 3


 

Sample Output
102


 

Source
2012 ACM/ICPC Asia Regional Chengdu Online
//用int64才能过。。。。int最大可以到差不多5然后加9个0吧。#include <stdio.h>#include <stdlib.h>#include <malloc.h>#include <limits.h>#include <ctype.h>#include <string.h>#include <string>#include <math.h>#include <algorithm>#include <iostream>#include <queue>#include <stack>#include <deque>#include <vector>using namespace std;#define N 100000 + 10struct node{int w;int s;}a[N];bool cmp(node a,node b){return a.w+a.s < b.w+b.s;}int main(){int n;int i;while(~scanf("%d",&n)){for(i=0;i<n;i++){scanf("%d%d",&a[i].w,&a[i].s);}sort(a,a+n,cmp);__int64 sum=0;__int64 ans=0;__int64 mark = 0;for(i=0;i<n;i++){mark = sum - a[i].s;if(ans < mark){ans = mark;}sum+=a[i].w;}if(ans < 0){printf("0\n");}else{printf("%I64d\n",ans);}}return 0;}


 

0 0
原创粉丝点击