CodeForces 377B-Preparing for the Contest(二分+贪心)

77 篇文章 0 订阅
52 篇文章 0 订阅
C - Preparing for the Contest
Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
Appoint description: 

Description

Soon there will be held the world's largest programming contest, but the testing system still has m bugs. The contest organizer, a well-known university, has no choice but to attract university students to fix all the bugs. The university has n students able to perform such work. The students realize that they are the only hope of the organizers, so they don't want to work for free: the i-th student wants to getci 'passes' in his subjects (regardless of the volume of his work).

Bugs, like students, are not the same: every bug is characterized by complexity aj, and every student has the level of his abilities bi. Student i can fix a bug j only if the level of his abilities is not less than the complexity of the bug: bi ≥ aj, and he does it in one day. Otherwise, the bug will have to be fixed by another student. Of course, no student can work on a few bugs in one day. All bugs are not dependent on each other, so they can be corrected in any order, and different students can work simultaneously.

The university wants to fix all the bugs as quickly as possible, but giving the students the total of not more than s passes. Determine which students to use for that and come up with the schedule of work saying which student should fix which bug.

Input

The first line contains three space-separated integers: nm and s (1 ≤ n, m ≤ 1050 ≤ s ≤ 109) — the number of students, the number of bugs in the system and the maximum number of passes the university is ready to give the students.

The next line contains m space-separated integers a1a2, ..., am (1 ≤ ai ≤ 109) — the bugs' complexities.

The next line contains n space-separated integers b1b2, ..., bn (1 ≤ bi ≤ 109) — the levels of the students' abilities.

The next line contains n space-separated integers c1c2, ..., cn (0 ≤ ci ≤ 109) — the numbers of the passes the students want to get for their help.

Output

If the university can't correct all bugs print "NO".

Otherwise, on the first line print "YES", and on the next line print m space-separated integers: the i-th of these numbers should equal the number of the student who corrects the i-th bug in the optimal answer. The bugs should be corrected as quickly as possible (you must spend the minimum number of days), and the total given passes mustn't exceed s. If there are multiple optimal answers, you can output any of them.

Sample Input

Input
3 4 9
1 3 1 2
2 1 3
4 3 6
Output
YES
2 3 2 3
Input
3 4 10
2 3 1 2
2 1 3
4 3 6
Output
YES
1 3 1 3
Input
3 4 9
2 3 1 2
2 1 3
4 3 6
Output
YES
3 3 2 3
Input
3 4 5
1 3 1 2
2 1 3
5 3 6
Output
NO

Hint

Consider the first sample.

The third student (with level 3) must fix the 2nd and 4th bugs (complexities 3 and 2 correspondingly) and the second student (with level 1) must fix the 1st and 3rd bugs (their complexity also equals 1). Fixing each bug takes one day for each student, so it takes 2 days to fix all bugs (the students can work in parallel).

The second student wants 3 passes for his assistance, the third student wants 6 passes. It meets the university's capabilities as it is ready to give at most 9 passes.


题意:

给出n个学生,m个bug,学校给出的钱s。之后m个bug复杂度,n个学生的能力和n个学生需要的钱。求出最小的天数解决bug。


思路:

 这题的思路可以用二分来求出天数,之后就是贪心最小的费用。感觉二分不会,都是模仿大神的。


AC代码:


#include<iostream>
#include<algorithm>
#include<cstring>
#include<cstdio>
#include<vector>
#include<cmath>
#include<set>
#include<map>
using namespace std;

typedef long long ll;
const int T = 100000+50;

int n,m,s;
pair<int,int> bug[T];
pair< int,pair<int,int> > stu[T];
set< pair<int,int> > se;
int val[T];

ll slove(int x)//二分出<=s的天数
{
	ll sum = 0;
	int c = 0;
	se.clear();
	for(int i=0;i<m;i+=x){//bug数
		while(c<n&&stu[c].first>=bug[i].first){//找出可以修改bug的学生
			se.insert(stu[c].second);
			c++;
		}
		if(se.empty()){
			return (ll)1e18;
		}
		//取出能修改bug且要代价最小的学生
		pair<int,int> t = *(se.begin());
		sum += t.first;
		se.erase(se.begin());//删除此学生
		for(int j=i;j<m&&j<i+x;++j){//给对应的bug配上学生
			val[bug[j].second] = t.second+1;
		}
	}
	return sum;//返回x天需要的最小代价
}

int main()
{
#ifdef zsc
	freopen("input.txt","r",stdin);
#endif

	int i,j,k;
	while(~scanf("%d%d%d",&n,&m,&s))
	{
		for(i=0;i<m;++i){
			scanf("%d",&bug[i].first);
			bug[i].second=i;
		}
		for(i=0;i<n;++i){
			scanf("%d",&stu[i].first);
		}
		for(i=0;i<n;++i){
			scanf("%d",&stu[i].second.first);
			stu[i].second.second=i;
		}
		sort(bug,bug+m);
		reverse(bug,bug+m);
		sort(stu,stu+n);
		reverse(stu,stu+n);
		int L=1,R=m+1,mid;
		while(L<R)
		{
			mid = (L+R)/2;
			if(slove(mid)<=s)R=mid;
			else L = mid+1;
		}
		if(L>=m+1){
			printf("NO\n");
			continue;
		}
		printf("YES\n");
		slove(L);
		for(i=0;i<m-1;++i)printf("%d ",val[i]);
		printf("%d\n",val[m-1]);
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值