1. 程式人生 > >牛客訓練賽(博弈)

牛客訓練賽(博弈)

先判一波有沒有a-b的石子堆,有直接必勝。。

如果沒有那麼任何時候取完不能使石子數在a-b這個範圍內,因此可以把a-b當成無用狀態。。

然後直接打表就可以了。。

a=1的情況需要注意,因為 a>1的時候可以把b+1取到a以內,而a==1是不行的。。。(被這個卡到懷疑人生

/**
 *        ┏┓    ┏┓
 *        ┏┛┗━━━━━━━┛┗━━━┓
 *        ┃       ┃  
 *        ┃   ━    ┃
 *        ┃ >   < ┃
 *        ┃       ┃
 *        ┃... ⌒ ...  ┃
 *        ┃       ┃
 *        ┗━┓   ┏━┛
 *          ┃   ┃ Code is far away from bug with the animal protecting          
 *          ┃   ┃   神獸保佑,程式碼無bug
 *          ┃   ┃           
 *          ┃   ┃        
 *          ┃   ┃
 *          ┃   ┃           
 *          ┃   ┗━━━┓
 *          ┃       ┣┓
 *          ┃       ┏┛
 *          ┗┓┓┏━┳┓┏┛
 *           ┃┫┫ ┃┫┫
 *           ┗┻┛ ┗┻┛
 */ 
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
#include<queue>
#include<cmath>
#include<map>
#include<stack>
#include<set>
#include<bitset>
#include<stdlib.h>
#include<assert.h>
#define inc(i,l,r) for(int i=l;i<=r;i++)
#define dec(i,l,r) for(int i=l;i>=r;i--)
#define link(x) for(edge *j=h[x];j;j=j->next)
#define mem(a) memset(a,0,sizeof(a))
#define ll long long
#define eps 1e-8
#define succ(x) (1<<x)
#define lowbit(x) (x&(-x))
#define sqr(x) ((x)*(x))
#define mid (x+y>>1)
#define NM 300005 
#define nm 600005
#define pi 3.1415926535897931
const int inf=1e9+7;
using namespace std;
ll read(){
    ll x=0,f=1;char ch=getchar() ;
    while(!isdigit(ch)){if(ch=='-')f=-1;ch=getchar();}
    while(isdigit(ch))x=x*10+ch-'0',ch=getchar();
    return f*x;
}




ll n,a,b,s,_x;
bool f;


ll sg(ll x){
    x%=b+a;
    if(a==1)return x;
    if(x<a)return 0;
    if(x>=b)return 1;
    return x/a+1;
}

int main(){
    int _=read();while(_--){
	f=false;s=0;
	n=read();a=read();b=read();
	inc(i,1,n){
	    _x=read();
	    if(a<=_x&&_x<=b)f=true;
	    s^=sg(_x);
	}
	puts(f||s?"Yes":"No");
    }
    return 0;
}

Stones

時間限制:C/C++ 1秒,其他語言2秒 空間限制:C/C++ 524288K,其他語言1048576K 64bit IO Format: %lld

題目描述

有n堆石子,第i堆石子有xi個。 修修和棟棟輪流取石子,每人每次需要從任意一堆石子中取走個,修修先手。無法操作的人失敗。此外,如果一個人取完了一堆石子,他會立即獲勝。 不巧的是,修修除了數數以外啥都不會,他希望你幫他求出他能否獲勝。

輸入描述:

第一行一個整數t表示資料組數 (1 ≤ t ≤ 1000)。
每組資料第一行三個整數n,a,b (1 ≤ n ≤ 1000,1≤ a ≤ b ≤ 109),第二行n個整數 (1 ≤ xi ≤ 109)。

輸出描述:

每組資料輸出一行一個字串:如果修修可以獲勝輸出Yes,否則輸出No。

示例1

輸入

複製

2
1 1 3
4
1 1 3
6

輸出

複製

No
Yes