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.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
#include#include #include using namespace std; struct zy { int day; int score; }; bool compare(zy x,zy y) { if(x.score==y.score) return x.day y.score;//將分數按從大到小排序 } int main() { int T; cin>>T; zy a[2000]; while(T--) { int n,i,j; cin>>n; int flag[2000]={0};//標志無任務 for(i=0;i >a[i].day; for(i=0;i >a[i].score; sort(a,a+n,compare); int sum=0; for(i=0;i =1;j--) { if(flag[j]==0) { flag[j]=1;//代表第j天有已經有任務了 break; } } if(j==0)//代表任務未完成 sum+=a[i].score; } cout<