题目传送门: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;
}