Ten big walnuts is a whole lot of walnuts, that's for sure! Two walnuts is too little for anybody. How about six walnuts? Is it a small number of walnuts or a large one? The Parrot has already found
an answer to this question: after eating a small amount of walnuts he wants to eat some more, while after eating a large amount of walnuts he feels satisfied. The Parrot enjoys eating and hates overeating; that's why he wants to know a minimal number of walnuts
that is enough to get satisfied.
In order to calculate this number, he conducted a series of experiments. Each experiment went like that: the Parrot, being quite hungry, ate a number of walnuts and checked if this was enough to get
himself satisfied. Of course, if some number of walnuts is enough, any larger number will do either; vice versa, if after eating a number of walnuts he is still hungry, no smaller number can get the parrot satisfied. You should help the Parrot to process the
results of the experiments.
Input
The first line of the input contains an integern— the number of experiments conducted by the parrot<nobr>(0 ≤<em>n</em>≤ 100)</nobr>. The followingnlines contain descriptions
of these experiments. A description of an experiment consists of a number of walnuts eaten by the parrot (an integer from 3 to 9) and an outcome: “satisfied” in case this number was enough to get the parrot satisfied or “hungry” otherwise. It is known as a
fact, that ten walnuts is always enough and two walnuts are always not enough.
Output
Output the minimal number of walnuts that is enough to get the parrot satisfied. If the results of the experiments are inconsistent, output “Inconsistent”.
Samples
input
output
4
4 hungry
7 satisfied
5 hungry
8 satisfied
|
7
|
2
6 hungry
5 satisfied
|
Inconsistent
|
本题很容易,不过有两个陷阱:
1 当数字相等的时候,可能出现satisfied和 hungry的情况,就是Inconsistent了
2 要认真读题意:It is known as a fact, that ten walnuts is always enough and two walnuts are always not enough.
有两种解法:
1
namespace
{
static const int MAX_WALNUTS = 10;
}
void AWholeLotofWalnuts1644()
{
int n = 0, a = 0;
string s;
cin>>n;
string walnuts[MAX_WALNUTS];
for (int i = 0; i < n; i++)
{
cin>>a>>s;
if (walnuts[a].size())
{
if (walnuts[a] != s)
{
cout<<"Inconsistent";
return;
}
}
walnuts[a] = s;
}
int ans = -1;
for (int i = 0; i < MAX_WALNUTS; i++)
{
if (walnuts[i] == "satisfied" && -1 == ans)
{
ans = i;
}
if (walnuts[i] == "hungry" && -1 != ans)
{
cout<<"Inconsistent";
return;
}
}
if (-1 == ans) cout<<10;//It is known as a fact, that ten walnuts is always enough and two walnuts are always not enough.少了这句就答案错误了
else cout<<ans;
}
2 更加简洁点:
void AWholeLotofWalnuts1644_2()
{
int n = 0, a = 0;
string s;
cin>>n;
int min_sat = MAX_WALNUTS;
int max_hun = -1;
for (int i = 0; i < n; i++)
{
cin>>a>>s;
if ('h' == s[0]) max_hun = max_hun < a? a : max_hun;
else if ('s' == s[0]) min_sat = min_sat > a? a : min_sat;
}
if (max_hun >= min_sat) cout<<"Inconsistent";
else cout<<min_sat;
}
分享到:
相关推荐
【acm.timus.ru最全代码】集合是一个包含大量算法和解决方案的资源库,专为参与ACM(国际大学生程序设计竞赛)的参赛者提供。这个压缩包可能包含了成千上万的源代码文件,涵盖了从基础算法到复杂数据结构的各种问题...
Timus ... Problems code. (Mainly Java implementation) Chinese 刷题代码,主要是java实现,可能会有其他语言代码 代码来自LeetCode / NowCoder / timus 等 site url LeetCode NowCoder Timus LeetCode-cn
本压缩包"acm.timus.ru-solutions"包含了作者对于TIMUS平台上问题的解答,主要使用Java语言实现。通过分析这些解决方案,我们可以学习到多种算法思想和编程技巧。 1. **基础数据结构与算法**:Java作为面向对象的...
In the present world you frequently meet a lot of call numbers and they are going to be longer and longer. You need to remember such a kind of numbers. One method to do it in an easy way is to assign ...
描述中的"acm.timus.ru 1709 problem"进一步确认了这是一个来自TIMUS在线判题平台的编程挑战,编号为1709。TIMUS是一个广泛使用的编程竞赛平台,它提供了一系列的编程题目,帮助参赛者提升算法设计和编程技能。 ...
timus.ru_solutions 使用的语言:Python 使用的Python版本:3.9 我可以用Python语言解决的一些问题在“ python”目录中。 有些解决方案可以在Java中运行,但确切的解决方案/算法在Python中不起作用! 不知道为什么我...
timus.ru_solutions_python 使用的python:3.9 我可以用Python语言解决的一些问题在python目录中。 有些解决方案可以在Java中运行,但确切的解决方案/算法在Python中不起作用! 我不知道为什么
Timus Online Judge是一个专门用于编程竞赛和算法练习的在线系统,它提供了丰富的题目供用户进行编程挑战,以提升算法理解和编程技能。"Beginner"级别是入门阶段,适合刚刚接触算法或编程基础较薄弱的学习者。 在...
资源分类:Python库 所属语言:Python 资源全名:timus-sender-0.1.1.post1.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059
此外,利用在线资源,如浙江大学的ACM在线平台(acm.zju.edu.cn)和其他题库网站(acm.timus.ru、acm.sgu.ru、ace.delos.com/usacogate),进行实战训练和问题解答,这对于提升技能至关重要。 总的来说,ACM竞赛...
"Timus在线法官问题"是面向程序员和计算机科学爱好者的在线平台,用于测试和提高编程技能,特别是解决算法和数据结构问题。这个平台主要支持C++语言,因此我们重点讨论与C++相关的知识点。 1. **C++基础** C++是一...
此外,网络资源如浙江大学的ACM在线评测系统(acm.zju.edu.cn)和其他国际评测系统(如acm.timus.ru、acm.sgu.ru等)也是学习和训练的重要工具。 掌握ACM竞赛常用算法与数据结构,不仅有助于在比赛中取得优异成绩,...
- **URAL**: <http://acm.timus.ru/> - **SPOJ**: <https://www.spoj.com/> - **Codeforces**: <https://codeforces.com/> 这些网站为算法学习者提供了丰富的练习资源。 ### 二、算法书籍推荐 #### 《算法导论...
蒂莫斯(Timus Online Judge)是一个著名的在线编程竞赛平台,它提供了大量的编程题目供参赛者解决,旨在提高编程技能和算法理解。在这个名为“timus”的压缩包中,包含了作者使用Python语言成功解答Timus平台上题目...
【ACM常用算法及数据结构】是针对ACM/ICPC(国际大学生程序设计竞赛)进行的编程技能提升的学习资源。ACM/ICPC是由美国计算机学会(ACM)主办的一项全球性竞赛,旨在展示大学生在分析问题和解决问题上的能力,并提供...
将图表添加到Timus Online Judge配置文件 该扩展程序将已解决问题的数量图表添加到Timus Online Judge的个人资料和比较器中。 功能:*概要文件和比较中已解决问题计数的图表*向图表中添加更多用户,删除它们,自定义...
ACM竞赛 常用算法&数据结构 ...网络资源:http://acm.zju.edu.cn、http://acm.timus.ru、http://acm.sgu.ru、http://ace.delos.com/usacogate、http://www.google.com 等网站提供了大量的 ACM 竞赛资源和信息。