码迷,mamicode.com
首页 > Windows程序 > 详细

AcWing 894. 拆分-Nim游戏

时间:2019-11-23 18:35:03      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:color   cin   iostream   div   ret   include   std   count   nbsp   

#include <cstring>
#include <iostream>
#include <algorithm>
#include <unordered_set>
using namespace std;
const int N = 110;
int n;
int f[N];
int sg(int x) {
    if (f[x] != -1) return f[x];
    unordered_set<int> S;
    for (int i = 0; i < x; i ++ )
        for (int j = 0; j <= i; j ++ )
            S.insert(sg(i) ^ sg(j));
    for (int i = 0;; i ++ )
        if (!S.count(i))
            return f[x] = i;
}
int main() {
    cin >> n;
    memset(f, -1, sizeof f);
    int res = 0;
    while (n -- ) {
        int x;
        cin >> x;
        res ^= sg(x);
    }
    if (res) puts("Yes");
    else puts("No");
    return 0;
}

 

AcWing 894. 拆分-Nim游戏

标签:color   cin   iostream   div   ret   include   std   count   nbsp   

原文地址:https://www.cnblogs.com/QingyuYYYYY/p/11918946.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!