P1145 约瑟夫

题目传送门:P1145 约瑟夫 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)

知识点:dfs  +  剪枝

// https://www.luogu.com.cn/problem/P1145
// dfs + 剪枝
#include<bits/stdc++.h>

using namespace std;

int k, m, ans, sign;// sign 代表是否找到答案

// cnt代表答案  x代表总共剩几人  y代表剩几个坏人  index代表现在从第几个人开始报数
// 下标从0开始
void dfs(int cnt, int x, int y, int index) {
    if(y == 0 && x == k) {
        ans = cnt;
        sign = 1;
        return;
    }
    // 剪枝  好人下标为0--k-1  所有下标在0--k-1的跳过
    if((index + cnt - 1) % x >= k) dfs(cnt, x - 1, y - 1, (index + cnt - 1) % x);
    return;
}
int main() {
    cin >> k;
    for(int i = k + 1; ; i++)
        if(!sign) 
            dfs(i, 2 * k, k, 0);
        else 
            break;
    cout << ans << '\n';
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值