| Time Limit: 1000MS | Memory Limit: Unknown | 64bit IO Format: %lld & %llu |
Description
Problem A
Hello World!
Input: Standard Input
Output: Standard Output
When you first made the computer to print the sentence “Hello World!”, you felt so happy, not knowing how complex and interesting the world of programming and algorithm will turn out to be. Then you did not know anything about loops, so to print 7 lines of “Hello World!”, you just had to copy and paste some lines. If you were intelligent enough, you could make a code that prints “Hello World!” 7 times, using just 3 paste commands. Note that we are not interested about the number of copy commands required. A simple program that prints “Hello World!” is shown in Figure 1. By copying the single print statement and pasting it we get a program that prints two “Hello World!” lines. Then copying these two print statements and pasting them, we get a program that prints four “Hello World!” lines. Then copying three of these four statements and pasting them we can get a program that prints seven “Hello World!” lines (Figure 4). So three pastes commands are needed in total and Of course you are not allowed to delete any line after pasting. Given the number of “Hello World!” lines you need to print, you will have to find out the minimum number of pastes required to make that program from the origin program shown in Figure 1.
|
|
|
|
|
| Figure 1 | Figure 2 | Figure3 | Figure 4 |
Input
The input file can contain up to 2000 lines of inputs. Each line contains an integer N (0<N<10001) that denotes the number of “Hello World!” lines are required to be printed.
Input is terminated by a line containing a negative integer.
Output
For each line of input except the last one, produce one line of output of the form “Case X: Y” where X is the serial of output and Y denotes the minimum number of paste commands required to make a program that prints N lines of “Hello World!”.
Sample Input Output for Sample Input
| 2 10 -1 | Case 1: 1 Case 2: 4
|
分析:
刘汝佳大白书里的课后习题,大水题。
ac代码:
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
int n;
int kase=0;
while(scanf("%d",&n)&&n>=0)
{
int i;
for( i=0;(1<<i)<n;i++)
;
printf("Case %d: %d\n",++kase,i);
}
return 0;
}
本文详细解析了刘汝佳大白书中的HelloWorld!习题,通过输入指定的“HelloWorld!”打印次数,计算所需的最小粘贴命令数量。包含输入格式、输出格式及样例输入输出分析。




223

被折叠的 条评论
为什么被折叠?



