zoukankan      html  css  js  c++  java
  • 常用博弈模板(纯模板 利于记忆)

    1、巴什博奕(Bash Game):只有一堆n个物品,两个人轮流从这堆物品中取物,规
    定每次至少取一个,最多取m个。最后取光者得胜。

    #include<iostream>
    #include<cmath>
    #include<cstring>
    #include<string>
    #include<algorithm>
    #include<cstdio>
    using namespace std;
    const int N=1e6+50;
    const int INF=0x3f3f3f3f;
    typedef long long ll;
    int main()
    {
        int n,a,b;
        while(~scanf("%d%d%d",&n,&a,&b))
        {
            int sum=n%(a+b);
            if(sum==0)
                printf("WIN
    ");
            else if(sum<=a)
                printf("LOST
    ");
            else
                printf("WIN
    ");
        }
       return 0;
    }
    

    2、威佐夫博奕(Wythoff Game):有两堆各若干个物品,两个人轮流从某一堆取任意数量或同
    时从两堆中取同样多的物品,规定每次至少取一个,多者不限,最后取光者得胜。

    #include<iostream>
    #include<cmath>
    #include<cstring>
    #include<string>
    #include<algorithm>
    #include<cstdio>
    using namespace std;
    const int N=2e5+50;
    const int INF=0x3f3f3f3f;
    typedef long long ll;
    int a[N];
    int main()
    {
        int n,m;
        while(~scanf("%d%d",&n,&m))
        {
            if(n<m)
            {
               swap(n,m);
            }
            int k=n-m;
            n=(int)(k*(1+sqrt(5.0))/2);
            if(n==m)
                printf("0
    ");//输
            else
              printf("1
    ");//赢
        }
        return 0;
    }
    

    3、尼姆博奕(Nimm Game):有三堆各若干个物品,两个人轮流从某一堆取任意多的
    物品,规定每次至少取一个,多者不限,最后取光者得胜。

    #include<iostream>
    #include<cmath>
    #include<cstring>
    #include<string>
    #include<algorithm>
    #include<cstdio>
    using namespace std;
    const int N=2e5+50;
    const int INF=0x3f3f3f3f;
    typedef long long ll;
    int a[N];
    int main()
    {
       int n;
       while(scanf("%d",&n))
       {
           if(n==0)
            break;
            int sg=0;
           for(int i=0;i<n;i++)
           {
               scanf("%d",a+i);
               sg^=a[i];
           }
           if(sg==0)
            printf("No
    ");
           else
           {
               printf("Yes
    ");
           }
       }
       return 0;
    }
    

      

  • 相关阅读:
    C# SqlDataAdapter
    数据库游标
    什么是DooPHP Framework ?
    健康世界官方网站绿色健康知识门户网站源码www.jiankangshijie.com
    蓝色教程资讯、软件下载网站风格全套织梦模板
    分享一本正在看的电子书,相当不错
    DooPHP中国官方微博
    DooPHP Framework 中文手册 v1.2
    吉林织梦网络公司网站风格模板 www.thinkphp.biz
    CSS HACK:IE6、IE7、IE8、Firefox兼容性问题解决方案
  • 原文地址:https://www.cnblogs.com/alpacadh/p/9114216.html
Copyright © 2011-2022 走看看