zoukankan      html  css  js  c++  java
  • 杭电 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 }
    ——将来的你会感谢现在努力的自己。
  • 相关阅读:
    CMSIS_OS中osMailPut 和 osMessagePut 的问题
    网络:W5500抓包TCP segment of a reassembled PDU
    网络:W5500 UDP数据包格式注意事项
    笔记:把编译时间加入到目标文件
    笔记:git和码云
    笔记:git基本操作
    FreeRtos堆栈检测应用
    一个由自增运算符以及C语法顺序细节引起的bug
    高级文件操作
    linux 权限相关
  • 原文地址:https://www.cnblogs.com/yexiaozi/p/5695865.html
Copyright © 2011-2022 走看看