SWUSTOJ #536 The Josephus Problem

題目

The problem is named after Flavius Josephus, a Jewish historian who participated in and chronicled the Jewish revolt of 66-70C.E. against the Romans. Josephus, as a general, managed to hold the fortress of Jotapata for 47days, but after the fall of the city he took refuge with 40 diehards in a nearby cave. There the rebels voted to perish rather than surrender. Josephus proposed that each man in turn should dispatch his neighbor, the order to be determined by casting lots. Josephus contrived to draw the last lot, and as one of the two surviving men in the cave, he prevailed upon his intended victim to surrender to the Romans. Your task:computint the position of the survivor when there are initially n people.

輸入

a Positive Integer n is initially people. n< = 50000

輸出

the position of the survivor

樣例輸入

6

樣例輸出

5

源代碼

#include <iostream>

int Func(int, int);

int main() {
    int n(0), k(2);
    std::cin >> n;
    std::cout << Func(n, k) + 1 << std::endl;
    return 0;
}

int Func(int n, int k) {
    if (n == 1)
        return 0;
    else
        return (Func(n - 1, k) + k) % n;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章