【数学】牛客挑战赛15C 约瑟夫问题

链接:https://www.nowcoder.com/acm/contest/112/C
来源:牛客网

约瑟夫问题(https://baike.baidu.com/item/约瑟夫问题),n个人,1 2报数 1出队( 就是体育课的时候1 2报数 1出队,2留下),q次询问,每次求第x个人是第几个出队的

我很难过,具体数学白看了
就是当前总人数为奇数时,下一轮报数奇偶要转换(原奇数出列变成偶数出列),注意细节。
(最近都没1A过,难受

递归

#include<bits/stdc++.h>
using namespace std;
typedef long long LL;

LL n,q,x;

LL fun(LL n,LL x,bool op) {
    if(op ==1 && x%2==0) {
        return x/2;
    }
    if(op == 0 && x%2 == 1) {
        return (x+1)/2;
    }
    LL res = 0;
    if(op) res = n/2,x = (x+1)/2;
    else res = (n+1)/2,x = x/2;
    if(n&1) op^=1;
    return res+fun(n-res,x,op);
}

int main() {
    cin>>n>>q;
    while(q--) {
        scanf("%lld",&x);
        LL ans = fun(n,x,0);
        printf("%lld\n",ans);
    }
}

循环

#include<bits/stdc++.h>
using namespace std;
typedef long long LL;

LL n,q,x;

int main() {
    cin>>n>>q;
    while(q--) {
        scanf("%lld",&x);
        bool fg = 0;
        //fg = 0 删奇数
        //fg = 1 删偶数
        LL tn = n;
        LL ans = 0;
        while(fg == 0 && !(x&1)||fg == 1 && (x&1)) {
            if(!fg) {
                ans+=(tn+1)/2;
                if(tn&1) fg^=1;
                tn = tn - (tn+1)/2;
                x>>=1;
            }
            else {
                ans+=tn/2;
                if((tn&1)) fg ^=1;
                tn = tn - tn/2;
                x = (x+1)/2;
            }

        }
        //printf("ans = %lld\n",ans);

        if(!fg) ans+=(x+1)/2;
        else ans+=x/2;
        printf("%lld\n",ans);
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值