ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

CodeForces - 4B

2019-05-30 20:02:06  阅读:273  来源: 互联网

标签:CodeForces hours parents numbers Peter 4B day he


Tomorrow Peter has a Biology exam. He does not like this subject much, but ddays ago he learnt that he would have to take this exam. Peter's strict parents made him prepare for the exam immediately, for this purpose he has to study not less than minTimei and not more than maxTimei hours per each i-th day. Moreover, they warned Peter that a day before the exam they would check how he has followed their instructions.

So, today is the day when Peter's parents ask him to show the timetable of his preparatory studies. But the boy has counted only the sum of hours sumTimespent him on preparation, and now he wants to know if he can show his parents a timetable sсhedule with d numbers, where each number sсhedulei stands for the time in hours spent by Peter each i-th day on biology studies, and satisfying the limitations imposed by his parents, and at the same time the sum total of all schedulei should equal to sumTime.

Input

The first input line contains two integer numbers d, sumTime (1 ≤ d ≤ 30, 0 ≤ sumTime ≤ 240) — the amount of days, during which Peter studied, and the total amount of hours, spent on preparation. Each of the following d lines contains two integer numbers minTimei, maxTimei (0 ≤ minTimei ≤ maxTimei ≤ 8), separated by a space — minimum and maximum amount of hours that Peter could spent in the i-th day.

Output

In the first line print YES, and in the second line print d numbers (separated by a space), each of the numbers — amount of hours, spent by Peter on preparation in the corresponding day, if he followed his parents' instructions; or print NO in the unique line. If there are many solutions, print any of them.

Examples

Input
1 48
5 7
Output
NO
Input
2 5
0 1
3 5
Output
YES
1 4




思路:直接先从最少的复习时间开始,不够的慢慢累加,最后判断输出 就行

#include<bits/stdc++.h>
using namespace std;
int a[101],b[101],ans[101];
int main()
{
	int n,m,i;
	cin>>n>>m;
	for(i = 0; i < n; i++){
		cin>>a[i]>>b[i];
		m -= a[i];
	}
	if(m < 0){   //肯定不符合
		cout<<"NO"<<endl;
		return 0;
	}
	for(i = 0; i < n; i++){  //慢慢加上
		ans[i] = a[i];
		int h = b[i]-a[i];
		if(h < m){
			m -= h;
			ans[i] += h;
		}
		else{
			ans[i] += m;
			m = 0;
		}
	}
	if(m){
		cout<<"NO"<<endl;
		return 0;
	}
	cout<<"YES"<<endl<<ans[0];
	for(i = 1; i < n; i++){
		printf(" %d",ans[i]);
	}
	return 0;
}

  

标签:CodeForces,hours,parents,numbers,Peter,4B,day,he
来源: https://www.cnblogs.com/clb123/p/10951685.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有