博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
help is needed for dexter uva 11384
阅读量:4611 次
发布时间:2019-06-09

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

这题 的论证过程如下:

假设l0=1,2,3,4,...,n-1,n;减掉数k之后剩下 1,2,3,...,k-1,0,1,2,3,4,...,n-k;则讲数列分成了两半l1=1,2,3,...,k-1,和l2=1,2,3,...,n-k;由于较短的数列是较长的数列的子集因此,相减的次数主要取决于较长的数列,于是有:fl0=fl2+1(|l2|>|l1|);或fl0=fl1+1(|l1|>|l2|),由此我们知道不管是l1还是l2都必须尽量的短,于是有|l1|=|l2|或者|l1|=|l2|+1所以,减去的数必须是中间的那个数,因此有f(n)=f(n/2)+1;如此递归下去即可。

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

 

题目如下:

Problem H

Help is needed for Dexter

Time Limit: 3 Second

 

Dexter is tired of Dee Dee. So he decided to keep Dee Dee busy in a game. The game he planned for her is quite easy to play but not easy to win at least not for Dee Dee. But Dexter does not have time to spend on this silly task, so he wants your help.

 

There will be a button, when it will be pushed a random number N will be chosen by computer. Then on screen there will be numbers from 1 to N. Dee Dee can choose any number of numbers from the numbers on the screen, and then she will command computer to subtract a positive number chosen by her (not necessarily on screen) from the selected numbers. Her objective will be to make all the numbers 0.

 

For example if N = 3, then on screen there will be 3 numbers on screen: 1, 2, 3. Say she now selects 1 and 2. Commands to subtract 1, then the numbers on the screen will be: 0, 1, 3. Then she selects 1 and 3 and commands to subtract 1. Now the numbers are 0, 0, 2. Now she subtracts 2 from 2 and all the numbers become 0.

 

Dexter is not so dumb to understand that this can be done very easily, so to make a twist he will give a limit L for each N and surely L will be as minimum as possible so that it is still possible to win within L moves. But Dexter does not have time to think how to determine L for each N, so he asks you to write a code which will take N as input and give L as output.

 

Input and Output:

Input consists of several lines each with N such that 1 ≤ N ≤ 1,000,000,000. Input will be terminated by end of file. For each N output L in separate lines.

 

 

SAMPLE  INPUT

OUTPUT  FOR SAMPLE INPUT

1

2

3

1

2

2

 

 

Problemsetter: Md. Mahbubul Hasan

 

转载于:https://www.cnblogs.com/jackwuyongxing/p/3366482.html

你可能感兴趣的文章
201510252245_《css——字间距》
查看>>
[转载]在Robotium中使用ID
查看>>
【总结——关于CSS样式表的基础知识】
查看>>
MyEclipse开启Jquery智能提示
查看>>
[WHY]Hello, Worktile~
查看>>
Linux高性能server编程——定时器
查看>>
安装edusoho
查看>>
输入的全角字符转换成半角字符--css、js、ASP.NET
查看>>
centos开启nginx服务成功,却无法访问。没有开启80端口。centos配置防火墙 开启80端口...
查看>>
机器学习入门(1)_基本概念
查看>>
1. Two Sum(C++)
查看>>
西游释厄传2游戏技巧
查看>>
Shell命令合集详情
查看>>
A Complete Guide to Usage of ‘usermod’ command– 15 Practical Examples with Screenshots
查看>>
功能测试话题分享-0324 用例
查看>>
每天一个linux 命令:which
查看>>
HDU 1016 Prime Ring Problem(素数环问题)
查看>>
lvs 负载均衡
查看>>
原型模式ProtoType
查看>>
HashMap和Hashtable的区别
查看>>