HDU 2925 Musical Chairs(约瑟夫环问题)

来源:互联网 发布:数据共享的基础是什么 编辑:程序博客网 时间:2024/06/08 06:49

Musical Chairs

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1201    Accepted Submission(s): 689


Problem Description
In the traditional game of Musical Chairs, N + 1 children run around N chairs (placed in a circle) as long as music is playing. The moment the music stops, children run and try to sit on an available chair. The child still standing leaves the game, a chair is removed, and the game continues with N children. The last child to sit is the winner.

In an attempt to create a similar game on these days' game consoles, you modify the game in the following manner: N Children are seated on N chairs arranged around a circle. The chairs are numbered from 1 to N . Your program pre-selects a positive number D . The program starts going in circles counting the children starting with the first chair. Once the count reaches D , that child leaves the game, removing his/her chair. The program starts counting again, beginning with the next chair in the circle. The last child remaining in the circle is the winner.


For example, consider the game illustrated in the figure above for N = 5 and D = 3 . In the figure, the dot indicates where counting starts and × indicates the child leaving. Starting off, child #3 leaves the game, and counting restarts with child #4. Child #1 is the second child to leave and counting restart with child #2 resulting in child #5 leaving. Child #2 is the last to leave, and child #4 is the winner. Write a program to determine the winning child given both N and D .
 

Input
Your program will be tested on one or more test cases. Each test case specifies two positive integers N and D on a single line, separated by one or more spaces, where N, D < 1, 000, 000 .

The last line of the input file contains two 0's and is not part of the test cases.
 

Output
For each test case, write the winner using the following format:


N D W


Where N and D are as above, is a space character, and W is the winner of that game.
 

Sample Input
5 37 40 0
 

Sample Output
5 3 47 4 2


【思路分析】
该题是一个典型的约瑟夫环问题,可以用循环链表解决,我试了一下循环队列,可惜TLE。。。
着重提一下更简洁的数学表达式:
f[1] = 0;
f[i] = (f[i - 1] + m) % i;(i > 1)
其中f[i]表示i个人按顺序数到第m个出局的最后胜利者的编号(按0~(i-1)编号),推导如下:
假设有n个人从0~n-1编号,从0开始报数,到数为m-1时该人出局,即该人的编号k-1 = (m % n) - 1,则剩下的编号依次为: k,k + 1,k + 2,.....,n - 1/0,1,2,......,k - 2的n - 1个人又重新构成了新的小一个规模的约瑟夫环,注意到前一段编号的通项为(k + i),其中i的取值依次为0~(n - k - 1);后一段编号的通项为j,j的取值依次为0~(k - 2)。同时对上述编号重新简化:0,1,2,......,n - k + 1/,.......,n-2。设n个人,n - 1个人的最后胜利者为res1,res2,则res1 = (res2 + k) % n

代码如下

#include <iostream>#include <cstdio>#include <cstdlib>#include <cstring>#include <cmath>#include <algorithm>using namespace std;int main(){    int n,d;    while(scanf("%d %d",&n,&d) != EOF && (n || d))    {        printf("%d %d ",n,d);        int f = 0;        for(int i = 2;i <= n;i++)        {            f = (f + d) % i;        }        printf("%d\n",f + 1);    }    return 0;}



0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 忘了支付宝账号怎么办 支付宝账号丢了怎么办 生完孩子奶水不足怎么办 生完宝宝没奶水怎么办 生完三天没奶水怎么办 生完孩子奶头小怎么办 生完孩子没有奶水怎么办 宝宝刚出生没奶怎么办 婴儿含着乳头睡怎么办 没满月的换奶粉怎么办 生完孩子奶少怎么办 刚满月没奶了怎么办 健康之路没奶水怎么办 生完孩子奶胀痛怎么办 生完两天没有奶怎么办 一个多月的宝宝睡眠不好怎么办 产妇奶少不够吃怎么办 冬天腿上掉皮屑怎么办 一岁宝宝不喝奶粉怎么办 2岁宝宝不吃奶粉怎么办 老婆生了孩子性冷淡怎么办 宝宝有轻度地贫怎么办 不小心怀孕了该怎么办 45岁不小心怀了怎么办 喝了酒胃不舒服怎么办 备孕期间孕酮低怎么办 2个月宝宝不睡觉怎么办 生完小孩肚子还是很大怎么办 生完孩子肚皮疼怎么办 生完孩子有肚腩怎么办 生完宝宝肚子还是很大怎么办 生完孩子小腹大怎么办 生完孩子肚皮松怎么办 生过孩子肚子松怎么办 生完孩子肚皮痒怎么办 生完小孩肚子松弛怎么办 生了孩子肚子大怎么办 嫁到别的省户口怎么办 孕中期假性宫缩怎么办 频繁的假性宫缩怎么办 显卡风扇不转了怎么办