博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 3210 : Coins
阅读量:6172 次
发布时间:2019-06-21

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

POJ 3210 : Coins

Time Limit: 1000MS Memory Limit: 131072K

Total Submissions: 7001 Accepted: 4616

Description

Snoopy has three coins. One day he tossed them on a table then and tried to flip some of them so that they had either all heads or all tails facing up. After several attempts, he found that regardless of the initial configuration of the coins, he could always achieve the goal by doing exactly two flippings, under the condition that only one coin could be flipped each time and a coin could be flipped more than once. He also noticed that he could never succeed with less than two flippings.

Snoopy then wondered, if he had n coins, was there a minimum number x such that he could do exactly x flippings to satisfy his requirements?

Input

The input contains multiple test cases. Each test case consists of a single positive integer n (n < 10,000) on a separate line. A zero indicates the end of input and should not be processed.

Output

For each test case output a single line containing your answer without leading or trailing spaces. If the answer does not exist, output “No Solution!”

Sample Input

2

3
0

Sample Output

No Solution!

2

题意我认为非常难理解,意思是n个硬币,不管是怎么摆的(正面或是反面),是否能找到一个最小值x。使得这n个硬币。通过x次翻转,必能到达全正或是全反的状态。能。则输出x的值。

不能,则输出“No Solution!”

分情况讨论:

如果n是一个偶数:

如果向上的数量为偶数,则向下的数量也一定为偶数,所以这个最小值x也一定是偶数。
如果向上的数量是奇数。则向下的数量也是奇数,这个最小值x一定得是奇数。

此时。

得到的x在两种情况中互相矛盾,所以偶数的话,要输出“No Solution!”

如果n是一个奇数:

事实上n是一个奇数的话,仅仅有一种情况了,向上的数量是m,向下的数量是n-m。两者一定一个奇数。一个偶数。此时向上即向下,向下即向上。
此时会发现偶数次翻转就可以完毕任务,仅仅需将状态不同的两种硬币中,为偶数的数量的那一堆翻转就可以,此时两堆硬币已经达到了同上或是同下。这时,多出来的反转次数,仅仅需对一个硬币来回翻转,由于是偶数次,所以不影响最后状态了。

那么这个x最小是多少?
如果n个硬币。1个向上,n-1个向下。依据上面所述,这时须要n-1次翻转。这时是满足全部情况的最小值了。

代码:

#include
using namespace std;int main(){ int n; while(cin>>n) { if(n==0) break; if(n%2) { cout<
<

转载地址:http://outba.baihongyu.com/

你可能感兴趣的文章
基于Docker的微服务CI CD流水线
查看>>
学好SEO需要掌握哪些知识要点?
查看>>
JetBrains GoLand macv2019.1.2中文版如何换成无牵引模式?
查看>>
电气火灾监控系统工作原理
查看>>
中使馆驳斥《金融时报》“中国网络威胁论”
查看>>
【挨踢人物传】茶乡浪子:“传奇”职场路,一生感谢情(第12期)
查看>>
我的友情链接
查看>>
c#关于数据库连接操作的案例
查看>>
聊聊最近接触的媒体查询!
查看>>
HAproxy指南之haproxy重定向应用(案例篇)
查看>>
学习 HTTP协议挺不错的一个类
查看>>
深入字节码 -- ASM 关键接口 MethodVisitor
查看>>
linux 文件权限
查看>>
Linux常用命令集合
查看>>
Oracle DML
查看>>
Linux - FHS文件系统层次标准
查看>>
报错:Invalid bound statement (not found)
查看>>
Linux GPT分区格式磁盘的相关操作
查看>>
通过Docker进程pid获取容器id
查看>>
L15.2 zabbix基础(2)组件说明介绍
查看>>