首页
学习
活动
专区
圈层
工具
发布
社区首页 >专栏 >【杭电oj】1443 - Joseph(模拟,打表)

【杭电oj】1443 - Joseph(模拟,打表)

作者头像
FishWang
发布2025-08-26 18:49:08
发布2025-08-26 18:49:08
1820
举报

点击打开题目

Joseph

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

代码语言:javascript
复制
   3
4
0

Sample Output

代码语言:javascript
复制
   5
30

Source

ACM暑期集训队练习赛(5)

这道题打表并没有传说中那么容易TLE嘛,一遍就AC了。

代码如下:

代码语言:javascript
复制
#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;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2016-07-18,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Joseph
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档