1. 程式人生 > >JSK 習題:簽名籃球-巴什博弈

JSK 習題:簽名籃球-巴什博弈

在這裡插入圖片描述

思路:

有題意可知是巴什博弈,故直接用結論即可

程式碼:

#include <iostream>
using namespace std;

int main()
{
    int n,m;
    cin>>n>>m;
    if(n%(m+1)==0)
        cout<<"none"<<endl;
    else
    {
        if(n<=m)
        {
            cout<<n;
            for(int i=n+1;i<=m;i++)
                cout<<
" "<<i; cout<<endl; } else cout<<n%(m+1)<<endl; } return 0; }