HDU1443 模拟(难)
Joseph
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 2453 Accepted Submission(s): 1476
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 file consists of separate lines containing k. The last line in
the input file contains 0. You can suppose that 0 < k < 14.
/*
用数组和链表写的两个,费了一晚上时间一直超时。数据只有13个最后只能先跑出来数据再打表提交15S水过去。然而怎么就忘了把这两步合在一起呢?
真是糊涂了。
*/
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
int linklt_point[];
int ans[];
int t;
for(int n=;n<;n++)
{
if(n==) break;
for(int i=n+;;i++)
{
if(i%(*n)!=&&i%(*n)<=n)
continue;
for(int j=;j<*n;j++)
{
linklt_point[j]=j+;
}
linklt_point[*n]=;
int sta=,pre=*n;
int sum=;
int m=*n;
while()
{
int k=i%m;
if(k==) k=m;
for(int j=;j<k;j++)
{
pre=sta;
sta=linklt_point[sta];
}
if(sta<=n)
break;
linklt_point[pre]=linklt_point[sta];
sta=linklt_point[sta];
sum++;
m--;
if(sum==n)
break;
}
if(sum==n)
{
ans[n]=i;
break;
}
}
}
while(scanf("%d",&t)&&t!=)
{
printf("%d\n",ans[t]);
}
return ;
} #include<iostream>
#include<cstdio>
using namespace std;
int main()
{
int a[];
int n;
int ans[];
for(int t=;t<;t++)
{
for(int i=t+;;i++)
{
for(int j=;j<=*t;j++)
a[j]=;
int sta=;
int sum=;
int m=*t;
while()
{
int k=i%m;
if(k==) k=m;
int l=;
while(l!=k)
{
sta++;
if(sta==*t+)
sta=;
if(a[sta]==)
l++;
}
if(sta<=t)
break;
m--;
a[sta]=;
sum++;
if(sum==t)
break;
}
if(sum==t)
{
ans[t]=i;
break;
}
}
}
while(scanf("%d",&n)&&n!=)
{
printf("%d\n",ans[n]);
}
return ;
}
HDU1443 模拟(难)的更多相关文章
- Codeforces Round #523 (Div. 2) D. TV Shows 模拟(多重集 先把所有区间加入多重集合)+贪心+二分
题意:给出n个电视节目的起始和结束时间 并且租一台电视需要x +y*(b-a) [a,b]为时段 问完整看完电视节目的最小花费是多少 思路:贪心的思想 情况1 如果新租一台电视的花费<=在空 ...
- [考试反思]1026csp-s模拟测试88:发展
不用你们说,我自己来:我颓闪存我没脸. 昨天的想法, 今天的回答. 生存, 发展. 总分榜应该稍有回升,但是和上面的差距肯定还是很大. 继续. 为昨天的谬误,承担代价. T2和T3都值得张记性. T2 ...
- 【模拟】【HDU1443】 Joseph
Joseph Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Sub ...
- PAT 1139 First Contact[难][模拟]
1139 First Contact(30 分) Unlike in nowadays, the way that boys and girls expressing their feelings o ...
- What?废柴, 模拟登陆,代码控制滑动验证真的很难吗?Are you kidding???
1.简介 在前边的python接口自动化的时候,我们由于博客园的登录机制的改变,没有用博客园的登录测试接口.那么博客园现在变成了滑动验证登录,而且现在绝大多数的登录都变成这种滑动验证和验证码的登录验证 ...
- PAT 1105 Spiral Matrix[模拟][螺旋矩阵][难]
1105 Spiral Matrix(25 分) This time your job is to fill a sequence of N positive integers into a spir ...
- PAT 1088 Rational Arithmetic[模拟分数的加减乘除][难]
1088 Rational Arithmetic(20 分) For two rational numbers, your task is to implement the basic arithme ...
- CF 1005B Delete from the Left 【模拟数组操作/正难则反】
You are given two strings s and t. In a single move, you can choose any of two strings and delete th ...
- webapp应用--模拟电子书翻页效果
前言: 现在移动互联网发展火热,手机上网的用户越来越多,甚至大有超过pc访问的趋势.所以,用web程序做出仿原生效果的移动应用,也变得越来越流行了.这种程序也就是我们常说的单页应用程序,它也有一个英文 ...
随机推荐
- linux下java环境配置
非常简单的三行命令就搞定了! $ sudo add-apt-repository ppa:webupd8team/java$ sudo apt-get update$ sudo apt-get ins ...
- 简单解释Windows如何使用FS段寄存器
详见附件 jpg改rar
- Pushlet浏览器长连接通讯
原文链接:http://cuisuqiang.iteye.com/blog/1416771 Pushlet(一种comet 架构的实现)是基于Servlet 机制,数据从server端的Java 对象 ...
- Attribute在.net编程中的应用
Attribute FYI Link: Attribute在.net编程中的应用(一) Attribute在.net编程中的应用(二) Attribute在.net编程中的应用(三) Attribut ...
- css整理-06 表和列表
表格式化 表布局 table, display:table caption, display: table-caption thead, display: table-header-group tbo ...
- 我认为我可以去尝试做一下Maya Ue4导出插件
Begin Map Begin Level Begin Actor class="StaticMeshActor" Name=Floor Archetype=StaticMeshA ...
- 快学Java NIO 续篇
可以先看Java NIO的整体介绍,这篇接着说以下内容,<快学Java NIO>续篇 FileChannel SocketChannel ServerSocketChannel Java ...
- CF#335 Board Game
Board Game time limit per test 2.5 seconds memory limit per test 256 megabytes input standard input ...
- 【NOI2011】道路修建 BFS
[NOI2011]道路修建 Description 在 W 星球上有 n 个国家.为了各自国家的经济发展,他们决定在各个国家之间建设双向道路使得国家之间连通.但是每个国家的国王都很吝啬,他们只愿意修建 ...
- 使用Jaxb2进行xml与bean的转义时Date的format设置
参考http://jackyrong.iteye.com/blog/1826699 JAXB转换JAVA OBJECT到XML的时候,对java.util.Date的转换有些要注意的地方 输出的格式为 ...