题目链接:
http://acm.hdu.edu.cn/showproblem.php?pid=1789
题目大意:
给出N个作业的截至日期,和N个作业不交所扣掉的分数,要求输出扣除分数做少的方案。
思路:
贪心,
正确的策略是:
- 扣除分数大的先做
- 扣除分数相同,先截止的先做
- 做一件事的时候,从截止时间开始向第一天遍历,如果当天没有被作业占据则标记为占据。做这件事的日期越大越好。
- 如果不能满足3的条件,则为不能完成
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<set>
#include<cmath>
using namespace std;
const int maxn = 1e4 + ;
typedef long long ll;
int T, n, m;
struct node
{
int time, score;
bool operator <(const node& a)const
{
return score > a.score || score == a.score && time < a.time;
}
};
node a[maxn];
bool vis[maxn];
int main()
{
cin >> T;
while(T--)
{
cin >> n;
memset(vis, , sizeof(vis));
for(int i = ; i < n; i++)cin >> a[i].time;
for(int i = ; i < n; i++)cin >> a[i].score;
sort(a, a + n);
int sum = ;
for(int i = ; i < n; i++)
{
int ok = ;
for(int j = a[i].time; j >= ; j--)
{
if(!vis[j]){vis[j] = ok = ;break;}
}
if(!ok)sum += a[i].score;
}
cout<<sum<<endl;
}
return ;
}