Suppose that N players sit in order and take turns in a game, with the first person following the last person, to continue in cyclic order. While doing so, each player keeps track of the number of turns he or she has taken. The game consists of rounds, and in each round T turns are taken. After a round, the player who just had a turn is eliminated from the game. If the remaining players have all had the same number of turns, the game ends. Otherwise, they continue with another round of T moves, starting with the player just after the one who was most recently eliminated.
As an example, assume we begin a game with N=5 and T=17, labeling the players in order as A, B, C, D, and E, with all counts initially zero.
Beginning with A, 17 turns are taken. B will have taken the last of those turn, leaving our counts as follows:
Suppose that after every 17 turns, the player who just had a turn is eliminated from the game. All remaining players then compare their counts. If all of those counts are equal, everyone has had a fair number of turns and the game is considered completed. Otherwise, they continue with another round of 17 moves starting with the player just after the one who was most recently eliminated.
Continuing with our example, B will leave the game, and the next turn will be for C.
After 17 more turns starting with C, we find that A, D and E received 4 turns, while C received 5 turns, including the last:
Then C leaves, and since the remaining counts are not all the same, a new round beings with D having the next turn.
The next 17 turns start with D and end with E. A adds 5 turns, while D and E add 6:
Then E leaves.
At this point, notice that the two remaining players have the same count of 13. Therefore, the game ends. (We note that E\'s count was irrelevant to the decision to end the game.)
5 17 7 10 90 2 0
2 13 5 3 45 1
#include#include #include #include #include using namespace std; int n,m; struct node { int x; int pf; }q[10010]; int main() { while(scanf("%d",&n)!=EOF) { if(n == 0) { break; } scanf("%d",&m); for(int i=0;i<=n;i++) { q[i].x = 0; q[i].pf = 0; } int pn = n; int flag = 0; int pi = 0; while(flag == 0) { int pt = m/pn; int pm = m%pn; for(int i=0;i