(hdu step 9.1.2)Doing Homework again(贪心——有n份作业,每份作业都有一定的完成时间及没有完成时需要付出的代价,求最小代价)

来源:互联网 发布:linux服务器安全策略 编辑:程序博客网 时间:2024/05/22 17:37

题目:

Doing Homework again

Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 63 Accepted Submission(s): 57 
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 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
333 3 310 5 131 3 16 2 371 4 6 4 2 4 33 2 1 7 6 5 4
 
Sample Output
035
 
Author
lcy
 
Source
2007省赛集训队练习赛(10)_以此感谢DOOMIII
 
Recommend
lcy
 


题目分析:

               贪心。贪心策略为:如果完成时间不同,完成时间紧迫的排在前面。如果完成时间相同,那么付出代价大的排在前面。其实到这里,只是保证了完成的作业书尽可能的多,但是,并没有保证付出的代价最小。当一份作业可能不能完成时,我们需要在前面寻找一份代价比当前作业不做所付出的代价要小的作业舍弃掉。


代码如下:

/* * b.cpp * *  Created on: 2015年3月26日 *      Author: Administrator */#include <iostream>#include <cstdio>#include <algorithm>using namespace std;const int maxn = 1001;struct Homework{int deadline;int score;bool flag;}homeworks[maxn];bool cmp(Homework a,Homework b){if(a.deadline != b.deadline){//如果作业的完成时间不同return a.deadline < b.deadline;//那么完成时间紧迫的作业排在前面}return a.score > b.score;//如果完成时间相同,那么没完成时扣掉的分数多的排在前面}int main(){int t;scanf("%d",&t);while(t--){int n;scanf("%d",&n);int i;for(i = 0 ; i < n ; ++i){//依次读入每个作业的完成时间scanf("%d",&homeworks[i].deadline);}for(i = 0 ; i < n ; ++i){//一次读入每个作业没完成所需要付出的代价scanf("%d",&homeworks[i].score);homeworks[i].flag = true;//所有的作业一开始默认都是可以完成的}sort(homeworks,homeworks+n,cmp);//将作业按照优先级进行排序int k = 1;//当前天数int sum = 0;//所需要付出的代价for(i = 0 ; i < n ; ++i){//遍历所有的作业if(homeworks[i].deadline >= k){//如果当前作业的完成时间在当前天数的后面k++;//那么证明当前作业可以完成continue;//寻找下一个作业}//以下代码可以执行,佐鸣找到了一份不能完成的作业int p = homeworks[i].score;//标记没完成当前这份作业所需要付出的代价int pos = i;//标记当前作业的索引int j;//寻找一份作业,该作业如果不做的话,所付出的代价最小for(j = 0 ; j < i ; ++j){//遍历改作业之前的左右作业//如果找到一份作业如果不做的话,付出的代价<当前作业不做所付出的代价的话 && 该作业被做了if(homeworks[j].score < p && homeworks[j].flag == true){p = homeworks[j].score;//更新当前需要付出的代价pos = j;//记录该作业的索引}}sum += p;//将总代价 加上被舍弃掉的作业所需要付出的代价homeworks[pos].flag = false;//将该作业标记为未完成(被舍弃掉)}printf("%d\n",sum);}return 0;}





1 0
原创粉丝点击