天天看点

Josephus Problem LightOJ - 1179 数学 约瑟夫

The historian Flavius Josephus relates how, in the Romano-Jewish conflict of  A.D., the Romans took the town of Jotapata which he was commanding. Escaping, Josephus found himself trapped in a cave with  companions. The Romans discovered his whereabouts and invited him to surrender, but his companions refused to allow him to do so. He therefore suggested that they kill each other, one by one, the order to be decided by lot. Tradition has it that the means for affecting the lot was to stand in a circle, and, beginning at some point, count round, every third person being killed in turn. The sole survivor of this process was Josephus, who then surrendered to the Romans. Which begs the question: had Josephus previously practiced quietly with  stones in a dark corner, or had he calculated mathematically that he should adopt the st position in order to survive?

    Now you are in a similar situation. There are n persons standing in a circle. The persons are numbered from  to n circularly. For example,  and n are adjacent and  and  are also. The count starts from the first person. Each time you count up to k and the kth person is killed and removed from the circle. Then the count starts from the next person. Finally one person remains. Given n and k you have to find the position of the last person who remains alive.
Input

    Input starts with an integer T (≤ ), denoting the number of test cases.

    Each case contains two positive integers n ( ≤ n ≤ ) and k ( ≤ k < ).
Output

    For each case, print the case number and the position of the last remaining person.
Sample Input

    

     

     

     

     

     

     
Sample Output

    Case : 

    Case : 

    Case : 

    Case : 

    Case : 

    Case : 
           
//小模板
//n个人(编号0~(n-1)),从0开始报数,报到(m-1)的退出,剩下的人继续从0开始报数。求胜利者的编号。
    #include <stdio.h>  
    int main()  
    {  
        int n, m, i, s = ;  
        scanf("%d%d", &n, &m);  
        for (i = ; i <= n; i++)  
        {  
            s = (s + m) % i;  
        }  
        printf ("%d\n", s+); //因为实际生活中编号总是从1开始,因此输出+1  
    }  
           

计算时从0—n-1编号,res+1;

haven’t comprehended….

#include<iostream>
#include<cstdio>
using namespace std;
int T,n,k;
int main()
{
    scanf("%d",&T);
    for(int ca=;ca<=T;ca++)
    {
        scanf("%d%d",&n,&k);
        int res=;
        for(int i=;i<=n;i++)
            res=(res+k)%i;
        printf("Case %d: %d\n",ca,res+);
    }
    return ;
}