当前位置:网站首页>Game theory acwing 894 Split Nim game
Game theory acwing 894 Split Nim game
2022-07-05 06:24:00 【T_ Y_ F666】
Game theory AcWing 894. Split -Nim game
Original link
Algorithm tags
Math knowledge Game theory SG function
Ideas

Code
#include<bits/stdc++.h>
#define int long long
#define abs fabs
#define rep(i, a, b) for(int i=a;i<b;++i)
#define Rep(i, a, b) for(int i=a;i>=b;--i)
using namespace std;
const int N = 105, M = 10005;
int f[M];
int n;
inline int read(){
int s=0,w=1;
char ch=getchar();
while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();}
while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar();
return s*w;
}
void put(int x) {
if(x<0) putchar('-'),x=-x;
if(x>=10) put(x/10);
putchar(x%10^48);
}
int sg(int x){
if(f[x]!=-1){
return f[x];
}else{
unordered_set<int> S;
// Quantity requirements for the first pile
rep(i, 0, x){
// Quantity requirements of the second pile
rep(j, 0, i+1){
S.insert(sg(i)^sg(j));
}
}
// mex function
for(int i=0;;++i){
if(!S.count(i)){
return f[x]=i;
}
}
}
}
signed main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
memset(f, -1, sizeof f);
n=read();
int ans=0;
while(n--){
int x=read();
ans^=sg(x);
}
if(ans){
puts("Yes");
}else{
puts("No");
}
}
Originality is not easy.
Reprint please indicate the source
If it helps you Don't forget to praise and support 
边栏推荐
猜你喜欢

There are three kinds of SQL connections: internal connection, external connection and cross connection

1.14 - assembly line

求组合数 AcWing 887. 求组合数 III

Quickly use Amazon memorydb and build your own redis memory database

博弈论 AcWing 891. Nim游戏

栈 AcWing 3302. 表达式求值

MySQL advanced part 1: stored procedures and functions

容斥原理 AcWing 890. 能被整除的数

高斯消元 AcWing 884. 高斯消元解异或線性方程組

Leetcode-6108: decrypt messages
随机推荐
【LeetCode】Day95-有效的数独&矩阵置零
SPI details
Leetcode-1200: minimum absolute difference
Series of how MySQL works (VIII) 14 figures explain the atomicity of MySQL transactions and the principle of undo logging
Error ora-28547 or ora-03135 when Navicat connects to Oracle Database
Modnet matting model reproduction
1.15 - input and output system
Chapter 6 relational database theory
LeetCode 0108. Convert an ordered array into a binary search tree - the median of the array is the root, and the left and right of the median are the left and right subtrees respectively
SQL三种连接:内连接、外连接、交叉连接
2022/6/29-日报
C - XOR to all (binary topic)
What's wrong with this paragraph that doesn't work? (unresolved)
[rust notes] 15 string and text (Part 1)
【LeetCode】Easy | 20. Valid parentheses
中国剩余定理 AcWing 204. 表达整数的奇怪方式
[rust notes] 16 input and output (Part 2)
MySQL advanced part 2: storage engine
Currently clicked button and current mouse coordinates in QT judgment interface
Alibaba's new member "Lingyang" officially appeared, led by Peng Xinyu, Alibaba's vice president, and assembled a number of core department technical teams