51nod 1073约瑟夫环

Posted Draymonder

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了51nod 1073约瑟夫环相关的知识,希望对你有一定的参考价值。

思路传送门 :http://blog.csdn.net/kk303/article/details/9629329

 

 n里面挑选m个

可以递推从n-1里面挑m个

然后n-1里面的x 可以转换成 n里面的x 的公式

x = (x+m)%n;

 

 

#include <bits/stdc++.h>
using namespace std;

int main ()
{
    int n,m;
    scanf("%d %d",&n ,&m);
    int x = 0;
    for(int i=2;i <= n;i++)
        x = (x + m)%i;
    printf("%d\n",x+1);
}

 

以上是关于51nod 1073约瑟夫环的主要内容,如果未能解决你的问题,请参考以下文章

51Nod 1073 约瑟夫环

51nod1073-约瑟夫环,递归。

51nod 1073约瑟夫环 递归公式法

约瑟夫环

约瑟夫环以及其变种集合

51Nod1074 约瑟夫环 V2