紫书章六例题六 小球下落 (UVA 679) (直接模拟超时,找规律)

这个题直接模拟是超时的,因为最大深度为20,然后球的个数最大为 6*10^5,然后时间复杂度已经是10^6,如果有10^5组数据,然后就超时啦啦。所以就来找规律~

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

using namespace std;

int main()
{
    int t;
    scanf("%d",&t);
    while(t--){
        int n,m;
        scanf("%d %d",&n,&m);
        int temp=1,ans=1;
        for(;;)
        {
            if(temp==n) break;
            if(m%2==0) {m=m/2;ans=ans*2+1;}//向右走
            else {m=(m+1)/2;ans=ans*2;}//向左走
            temp++;
        }
        printf("%d\n",ans);
    }
    scanf("%d",&t);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值