贪心,一开始没读好题想错了,不能直接覆盖,如因为总时间1000000000,所以说在4的时候做3是可以的。。。没手写堆、、
1 #include <iostream> 2 #include <cstdio> 3 #include <queue> 4 #include <algorithm> 5 using namespace std; 6 int n; 7 struct data{long long t,v;}a[100010]; 8 long long ans,now; 9 priority_queue<long long>q; 10 bool cmp(data a,data b) {return a.t<b.t;} 11 inline int read() 12 { 13 int f=1,ans=0; 14 char c; 15 while (!isdigit(c=getchar())) if (c==‘-‘) f=-1; 16 ans=c-‘0‘; 17 while (isdigit(c=getchar())) ans=ans*10+c-‘0‘; 18 return ans*f; 19 } 20 int main() 21 { 22 scanf("%d",&n); 23 for (int i=1;i<=n;i++) a[i].t=read(),a[i].v=read(); 24 a[++n].t=0; a[n].v=0; 25 sort(a+1,a+n+1,cmp); 26 now=1000000000; 27 for (int i=n;i>=1;i--) 28 { 29 while (now>a[i].t && q.size()>0) 30 { 31 now--; 32 ans+=q.top(); 33 q.pop(); 34 } 35 now=a[i].t; 36 q.push(a[i].v); 37 } 38 printf("%lld\n",ans); 39 return 0; 40 }
Description
Farmer John 有太多的工作要做啊!!!!!!!!为了让农场高效运转,他必须靠他的工作赚钱,每项工作花一个单位时间。 他的工作日从0时刻开始,有1000000000个单位时间(!)。在任一时刻,他都可以选择编号1~N的N(1 <= N <= 100000)项工作中的任意一项工作来完成。 因为他在每个单位时间里只能做一个工作,而每项工作又有一个截止日期,所以他很难有时间完成所有N个工作,虽然还是有可能。 对于第i个工作,有一个截止时间D_i(1 <= D_i <= 1000000000),如果他可以完成这个工作,那么他可以获利P_i( 1<=P_i<=1000000000 ). 在给定的工作利润和截止时间下,FJ能够获得的利润最大为多少呢?答案可能会超过32位整型。
Input
第1行:一个整数N. 第2~N+1行:第i+1行有两个用空格分开的整数:D_i和P_i.
Output
输出一行,里面有一个整数,表示最大获利值。
Sample Input
3
2 10
1 5
1 7
Sample Output
17
HINT
第1个单位时间完成第3个工作(1,7),然后在第2个单位时间完成第1个工作(2,10)以达到最大利润
Source
时间: 2024-10-07 22:45:23