点击打开题目
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 2337 Accepted Submission(s): 1426
Problem 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
0Sample Output
5
30Source
ACM暑期集训队练习赛(5)
这道题打表并没有传说中那么容易TLE嘛,一遍就AC了。
代码如下:
#include <cstdio>
bool check(int m,int k)
{
int sum = m * 2;
int pos;
pos = (k % sum == 0) ? sum : (k % sum);
if (pos <= m) //特判一下
return false;
sum--;
while (1)
{
pos = (k - (sum - pos + 1)) % sum;
pos = pos == 0 ? sum : pos;
sum--;
if (pos <= m)
return false;
if (sum == m)
return true;
}
}
int main()
{
int n;
int l,r,mid;
int ans[20] = {0,2,7,5,30};
for (int i = 5 ; i <= 13 ; i++)
{
for (int j = i + 1 ; ; j++)
{
if (check(i,j))
{
ans[i] = j;
break;
}
}
}
while (~scanf ("%d",&n) && n)
printf ("%d\n",ans[n]);
return 0;
}