zoukankan      html  css  js  c++  java
  • HDU 6266 Hakase and Nano 【博弈论】

    题面:

    Hakase and Nano are playing an ancient pebble game (pebble is a kind of rock). There are n packs
    of pebbles, and the i-th pack contains ai pebbles. They take turns to pick up pebbles. In each turn,
    they can choose a pack arbitrarily and pick up at least one pebble in this pack. The person who
    takes the last pebble wins.
    This time, Hakase cheats. In each turn, she must pick pebbles following the rules twice continuously.
    Suppose both players play optimally, can you tell whether Hakase will win?
    Input
    The first line contains an integer $T (1 <= T <= 20) $ representing the number of test cases.
    For each test case, the first line of description contains two integers (n(1 <= n <= 106) and d (d = 1 or d = 2)). If d = 1, Hakase takes first and if d = 2, Nano takes first. n represents the number of pebble
    packs.
    The second line contains n integers, the i-th integer ai (1  ai  109) represents the number of
    pebbles in the i-th pebble pack.
    Output
    For each test case, print “Yes” or “No” in one line. If Hakase can win, print “Yes”, otherwise, print“No”.

    Example

    standard input standard output
    2
    3 1
    1 1 2 Yes
    3 2
    1 1 2 No

    题目大意:

    有两个人从N个石子堆中拿石子,规则类似Nim游戏。但不一样的是第一个人可以拿两次,第二个人只能拿一次。问最后谁能把石子都拿完。

    大致思路:

    面对博弈题我的思路是先把简单情况推一遍,然后分析。

    如图,图中A,B表示谁先手,W,L表示在这种情况下,A是否能赢。

    所以就有以下规律:

    1.当 (n) 为 3的 倍数时,若每个石子堆都是1,A先手必输。只有一个数量大于1的石子堆,则B先手A必输

    2.当 (n) 为3的倍数加一时。若数量大于1的石子堆数量小于等于一。则B先手A必输。

    其他情况均为A必胜。

    代码:

    #include<bits/stdc++.h>
    using namespace std;
    const int maxn=1e6+7;
    int main()
    {
        ios::sync_with_stdio(false);
        bool flag=true;
        int t,n,d,a;
        cin>>t;
        while(t--)
        {
            flag=true;
            int cnt=0;
            cin>>n>>d;
            for(int i=0;i<n;++i){
                cin>>a;
                if(a>=2)
                    cnt++;
            }
            int x=n%3;
            if(x==0){
                if(cnt==0 && d==1)
                    flag=false;
                if(cnt==1 && d==2)
                    flag=false;
            }else if(x==1){
                if(cnt<=1 && d==2)
                    flag=false;
            }
            if(flag)
                cout<<"Yes"<<endl;
            else
                cout<<"No"<<endl;
        }
        return 0;
    }
    
    
  • 相关阅读:
    数据结构-顺序表
    数据结构-概论
    社交网络图中结点的“重要性”计算 (30 分) C++解法
    面向对象程序设计--Java语言第二周编程题:有秒计时的数字时钟
    面向对象程序设计--Java语言第三周编程题:查找里程
    面向对象程序设计--Java语言第一周编程题:分数
    剑指Offer_#42_连续子数组的最大和
    vue--模态框背景不动解决方案
    redis(十七):Redis 安装,部署(WINDOWS环境下)
    redis(二十一):Redis 架构模式实现(哨兵)
  • 原文地址:https://www.cnblogs.com/SCaryon/p/9089525.html
Copyright © 2011-2022 走看看