[华为机试练习题]汽水瓶

有这样一道智力题:“某商店规定:三个空汽水瓶可以换一瓶汽水。小张手上有十个空汽水瓶,她最多可以换多少瓶汽水喝?”答案是5瓶,方法如下:先用9个空瓶子换3瓶汽水,喝掉3瓶满的,喝完以后4个空瓶子,用3个再换一瓶,喝掉这瓶满的,这时候剩2个空瓶子。然后你让老板先借给你一瓶汽水,喝掉这瓶满的,喝完以后用3个空瓶子换一瓶满的还给老板。如果小张手上有n个空汽水瓶,最多可以换多少瓶汽水喝?

题目很简单,不过我做的有点懵逼。

#include <iostream>
#include <cstdio>
using namespace std;
int main()
{
    int n;
    while(scanf("%d",&n),n){
        int ans=0;
        while(n>2){
            ans+=n/3;
            n=n%3+n/3;
        }
        if(n==2)ans++;
        printf("%d\n",ans);
    }
    return 0;
}

这个代码交上去,居然直接超时了。
我纠结了很久,最后怀疑是编译器不同导致的问题。
while(scanf(“%d”,&n),n)可能是这样循环结束的判断。
牛客网的编译器识别有误。
而自己的运行环境是CODEBLOCKS.
然后我把代码改为:

#include <iostream>
#include <cstdio>

using namespace std;

int main()
{
    int n;
    while(scanf("%d",&n)!=EOF){
        if(n==0)break;
        int ans=0;
        while(n>2){
            ans+=n/3;
            n=n%3+n/3;
        }
        if(n==2)ans++;
        printf("%d\n",ans);
    }
    return 0;
}

就直接过了。。。

你可能感兴趣的:([华为机试练习题]汽水瓶)