博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
<A watermeten> 《Before an Exam》
阅读量:5276 次
发布时间:2019-06-14

本文共 4233 字,大约阅读时间需要 14 分钟。

 
这是第二次参加的网络比赛,虽然是内部的,但也体会了一把比赛的感觉;题目比上次简单多了,会做的也不少,现在把其中我做的问题拿出来分析一下:
A. 《Watermelon》
time limit per test
1 second       memory limit      per test 64 megabytes
input
standard input
output
standard output

One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed w kilos. They rushed home, dying of thirst, and decided to divide the berry, however they faced a hard problem.

Pete and Billy are great fans of even numbers, that's why they want to divide the watermelon in such a way that each of the two parts weighs even number of kilos, at the same time it is not obligatory that the parts are equal. The boys are extremely tired and want to start their meal as soon as possible, that's why you should help them and find out, if they can divide the watermelon in the way they want. For sure, each of them should get a part of positive weight.

Input

The first (and the only) input line contains integer number w (1 ≤ w ≤ 100) — the weight of the watermelon bought by the boys.

Output

Print YES, if the boys can divide the watermelon into two parts, each of them weighing even number of kilos; and NO in the opposite case.

Sample test(s)
input
8
output
YES
Note

For example, the boys can divide the watermelon into two parts of 2 and 6 kilos respectively (another variant — two parts of 4 and 4 kilos).

这个问题实在太简单了,当然是在能理解题意的前提下,呵呵,我也是用了很长时间才翻译过来。

题意:两个人买了一个西瓜,两个人想把西瓜分成两份,每一份都是偶数的重量,等不等分都可以,问他们是否能成功。

陷阱:考虑w=2的情况。

源代码:

#include
using namespace std;int main(){ int n; cin>>n; if(n==2) cout<<"NO"; else if(n%2==0) cout<<"YES"<

第二个问题:

B. 《Before an Exam》

Tomorrow Peter has a Biology exam. He does not like this subject much, but d days 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 sumTime spent him on preparation, and now he wants to know if he can show his parents a timetable sсhedule with dnumbers, 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 numbersminTimei, 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.

Sample test(s)
input
1 48 5 7
output
NO
input
2 5 0 1 3 5
output
YES 1 4 源代码:
#include
using namespace std;int main(){ int i,d,sum,s=0,w=0; int m[31],n[31],t[31]; cin>>d>>sum; for(i=1;i<=d;i++) //输入每天的Min和MAx,并算出最小值总和和最大值总和 { cin>>m[i]>>n[i]; s+=n[i]; w+=m[i]; } if(w>sum||s
=sum) { cout<<"YES"<
 

题目分析:题目也不是很难,大意是:Peter在 d 天之后有一场考试,他父母给他规定了一个复习的总时间Sum,Peter要自己制定一个学习计划表,其中每一天都要包含这天学习的最少时间Mini 和最大时间 Maxi ,每一天学习时间 Mini<= timei <=Maxi 是否能达到 父母的规定,既在d 天里学习时间总和为Sum。

不能达到输出“NO”;能达到输出“YES”和每天的学习时间(一种情况即可)。

思路:知道每天的最小时间和最大时间,那么 如果最小时间总和大于Sum,或者最大时间总和小于Sum,那么不能达到要求。如果Sum在最小值总和 与最大值总和之间,那么符合;

      我输出的一种情况是:先比较最小值总和与Sum的大小关系,如果相等,那么输出即可,如果不等,那么从前至后依次补充时间数,直到满足为止,注意,最后补充的那一天要特殊处理;而后输出即可;

 

 

 

 

 

 

 

转载于:https://www.cnblogs.com/sdauyqy/p/3235958.html

你可能感兴趣的文章
BZOJ 2049: [Sdoi2008]Cave 洞穴勘测
查看>>
【题解】Luogu P3674 小清新人渣的本愿
查看>>
AS的快捷键
查看>>
数据分页 THINKPHP3.2 分页 三种分页方法
查看>>
format的用法
查看>>
select下拉列表选中后,跳转新链接
查看>>
AEAI ESB路由转换机制说明
查看>>
Spring Aop面向切面编程&&自动注入
查看>>
软件测试第三次作业
查看>>
石头数字的总和
查看>>
漫扯:从polling到Websocket(ZZ)
查看>>
mysql 导入CSV数据 [转]
查看>>
第十次ScrumMeeting博客
查看>>
iOS 9之3D Touch
查看>>
Apache CXF实现Web Service(3)——Tomcat容器和不借助Spring的普通Servlet实现JAX-RS(RESTful) web service...
查看>>
4. 垃圾回收- 4.3垃圾收集器
查看>>
练习1-17 编写一个程序,打印长度大于80个字符的所有输入行.
查看>>
php 设置
查看>>
各浏览器抗uaf机制
查看>>
将数字转化为电话号码(忽略全局属性)
查看>>