SWUSTOJ #536 The Josephus Problem

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 

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;
}

你可能感兴趣的:(SWUST,OJ,题解系列)