杭电 1789 Doing Homework again (贪心 求最少扣分)

Description

zichen 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 zichen 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 zichen 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 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 
 1 #include<cstdio>
 2 #include<algorithm>
 3 using namespace std;
 4 struct stu
 5 {
 6     int d,s;
 7 }a[2000];
 8 bool cmp(stu a,stu b)
 9 {
10     if(a.s != b.s) return a.s>b.s;
11     else return a.d<b.d;
12 }
13 int main()
14 {
15 
16     int t,n,j;
17     scanf("%d",&t);
18     while(t--)
19     {
20         int b[2000]={0,0};
21         int sum=0;
22         scanf("%d",&n);
23         for(int i = 0; i < n; i++)
24         {
25             scanf("%d",&a[i].d);
26         }
27             for(int i = 0; i < n; i++)
28             {
29                 scanf("%d",&a[i].s);
30             }
31                 sort(a,a+n,cmp);
32                 
33                  
34             /*    for(int i = 0;i < n;i++)
35                 printf("--%d--%d--
",a[i].d,a[i].s);
36             */    
37                 
38                 for(int i=0;i<n;i++)
39                 {
40                       for(j=a[i].d;j>0;j--)
41                       {
42                           if(b[j] == 0)
43                           {
44                               b[j]=1;
45                               break;
46                         }
47                       }    
48                           if(j == 0) sum+=a[i].s;    
49                 }
50                             printf("%d
",sum);
51     }
52 }
——将来的你会感谢现在努力的自己。
原文地址:https://www.cnblogs.com/yexiaozi/p/5695865.html