HDU 1789 Doing Homework again
http://acm.hdu.edu.cn/showproblem.php?pid=1789
Doing Homework again
Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1600 Accepted Submission(s): 945
Problem Description
Ignatius has just come back school from the 30th ACM/ICPC. Now he has a lot of homework to do. Every teacher gives him a deadline of handing in the homework.
If Ignatius hands in the homework after the deadline, the teacher will reduce his score of the final test. And now we assume that doing everyone homework always
takes one day. So Ignatius wants you to help him to arrange the order of doing homework to minimize the reduced score.
Input
The input contains several test cases. The first line of the input is a single integer T that is the number of test cases. T test cases follow.
Each test case start with a positive integer N(1<=N<=1000) which indicate the number of homework.. Then 2 lines follow. The first line contains N integers that
Each test case start with a positive integer N(1<=N<=1000) which indicate the number of homework.. Then 2 lines follow. The first line contains N integers that
indicate the deadlines of the subjects, and the next line contains N integers that indicate the reduced scores.
Output
For each test case, you should output the smallest total reduced score, one line per test case.
Sample Input
3
3
3 3 3
10 5 1
3
1 3 1
6 2 3
7
1 4 6 4 2 4 3
3 2 1 7 6 5 4
Sample Output
0
3
5
Author
lcy
Source
Recommend
lcy
题目大意:给定一系列任务的截至时间 和无法完成的罚分
解题思路:第N天截至的只能在前N天完成 对于第N天截至的任务 最多只能有N个
超出的必然无法完成 所以对于第N天截至的任务 如果超过N个 那么保留前N大的
后面的必然要罚分 然后从最后一天开始 所有截至日期大于当天的中的罚分最多的任务在当天完成
剩下的继续在下一天继续比较 在开始的时候记录总是罚分sum 用sum减去每次完成的任务的罚分
最后sum即是总是罚分
#include<iostream> #include<algorithm> #include<cstring> using namespace std; int v[1001]; struct Node { int d,s; }a[1001],b[1001]; bool cmp(Node x,Node y) { if(x.d!=y.d) return x.d<y.d; else return x.s>y.s; } int main() { int t; cin>>t; for(int l=1;l<=t;l++) { memset(a,0,sizeof(a)); memset(b,0,sizeof(b)); memset(v,0,sizeof(v)); int n; cin>>n; for(int i=1;i<=n;i++) cin>>a[i].d; int sum=0; for(int i=1;i<=n;i++) { cin>>a[i].s; sum+=a[i].s; } sort(a+1,a+n+1,cmp); int day=0; int k=1,kk=1; for(int i=1;i<=n;i++) { if(a[i].d!=day) { day=a[i].d; k=1; } else { k++; } if(k<=a[i].d) { b[kk].d=a[i].d; b[kk++].s=a[i].s; } } sort(b+1,b+kk,cmp); int p=b[kk-1].d; for(int i=p;i>=1;i--) { int Max=0; int kkk=0; for(int j=kk-1;j>=1;j--) { if(b[j].d>=i&&!v[j]) { if(b[j].s>Max) { Max=b[j].s; kkk=j; } } } sum-=Max; v[kkk]=1; } cout<<sum<<endl; } return 0; }