poj 1012 Joseph

C语言题库

共 2139字,需浏览 5分钟

 · 2021-10-16

Joseph


Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 62763
Accepted: 23870

Description

The Joseph's problem is notoriously known. For those who are not familiar with the original problem: from among n people, numbered 1, 2, . . ., n, standing in circle every mth is going to be executed and only the life of the last remaining person will be saved. Joseph was smart enough to choose the position of the last remaining person, thus saving his life to give us the message about the incident. For example when n = 6 and m = 5 then the people will be executed in the order 5, 4, 6, 2, 3 and 1 will be saved.

Suppose that there are k good guys and k bad guys. In the circle the first k are good guys and the last k bad guys. You have to determine such minimal m that all the bad guys will be executed before the first good guy.

Input

The input file consists of separate lines containing k. The last line in the input file contains 0. You can suppose that 0 < k < 14.

Output

The output file will consist of separate lines containing m corresponding to k in the input file.

Sample Input

3
4
0

Sample Output

5
30



约瑟夫



描述

约瑟夫的问题是众所周知的。对于那些不熟悉原问题的人:在n个人中,1 2…,n,每m个站在圆圈里的人将被处决,只有最后一个人的生命将被拯救。约瑟夫很聪明地选择了最后一个人的位置,从而救了他的命,给了我们关于这件事的信息。例如,当n = 6 m = 5时,将按照5、4、6、2、3和1的顺序执行。

假设有k个好人和k个坏人。在这个圆中,前k个是好人,后k个是坏人。你必须确定最小的m使所有的坏人都在第一个好人之前被处决。


输入

输入文件由包含k的独立行组成。输入文件的最后一行包含0。你可以假设0 < k < 14。


输出

输出文件将由单独的行组成,其中包含m,对应输入文件中的k。


Sample Input

3
4
0

Sample Output

5
30



题意:同样的约瑟夫问题,只是现在有K个好人,K个坏人,确定一个步长,是的在第一个好人被清除之前所有坏人都被清除干净。

题解:

1.坏人被清除掉的先后顺序无关紧要,知道下一个除掉的是好人还是坏人就行了。2.由于好人一直都是k个,每除掉一个坏人,坏人数-1,所以队列的总数每次-1但是好人一直是前k3.下一个被清除的人在队列中的“相对”序号为 s = (s+m-1)%(n-i);
4.只要s>=k,那么下一个被除掉的就是坏人

5.接下来说说m的取值范围:我们考察一下只剩下k+1个人时候情况,即坏人还有一个未被处决,那么在这一轮中结束位置必定在最后一个坏人,那么开始位置在哪呢?这就需要找K+2个人的结束位置,然而K+2个人的结束位置必定是第K+2个人或者第K+1个人,这样就出现两种顺序情况:GGGG.....GGGXB 或  GGGG......GGGBX (X表示有K+2个人的那一轮退出的人)所以有K+1个人的那一轮的开始位置有两种可能即第一个位置或K+1的那个位置,限定m有两种可能:t(k+1) 或 t(k+1)+1; t>=1; 若遍历每一个m必定超时,避免超时则需要打表和限制m的范围。

代码:

#include 
//#include
using namespace std;
int a[14];
int f(int k,int m)
{
int n,i,s;
n=2*k;
s=0;
for(i=0;i {
s=(s+m-1)%(n-i);
if(s }
return 1;
}
int main()
{
int i,k,n;
for(k=1;k<=14;k++)
{
i=k+1;
while(1)
{
if(f(k,i))
{
a[k]=i;
break;
}
else if(f(k,i+1))
{
a[k]=i+1;
break;
}
i+=k+1;
}
}
while(scanf("%d",&n)&&n)
printf("%d\n",a[n]);
return 0;
}


浏览 2
点赞
评论
收藏
分享

手机扫一扫分享

举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

举报