UVA11636- Hello World!

题意:使用最小的复制/黏贴次数,使得语句的条数恰好为n

思路:贪心思想,因为复制是所有条数翻倍,所以每次都取最大的条数*2

PS:天真的认为是n = -1时退出,所以WA了好几次。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;

int main() {
    int n, t = 1;
    while (scanf("%d", &n) != EOF) {
        if (n < 1)
            break;
        int cnt = 1, num = 0;
        while (cnt < n) {
            num++;
            cnt *= 2;
        }
        printf("Case %d: %d\n", t++, num);
    }
    return 0;
}

UVA11636- Hello World!,布布扣,bubuko.com

时间: 2024-10-30 16:19:09

UVA11636- Hello World!的相关文章

UVa 11636 你好 世界!(贪心)

https://vjudge.net/problem/UVA-11636 题意: 经过一次复制,一条语句会变成两条语句,再经过一次变成四条语句...求最少需要复制几次能使条数恰好为n? 思路: 贪心水题. 每次以最大复制数复制即可. 1 #include<iostream> 2 #include<algorithm> 3 #include<string> 4 using namespace std; 5 6 const int maxn = 50 + 5; 7 8 in