ZOJ1083 Win the Game, SG 게임
/*******************************************************************************
# Author : Neo Fung
# Email : [email protected]
# Last modified: 2012-06-13 23:09
# Filename: ZOJ1083 Win the Game.cpp
# Description :
******************************************************************************/
#ifdef _MSC_VER
#define DEBUG
#define _CRT_SECURE_NO_DEPRECATE
#endif
#include <fstream>
#include <stdio.h>
#include <iostream>
#include <string.h>
#include <string>
#include <limits.h>
#include <algorithm>
#include <math.h>
#include <numeric>
#include <functional>
#include <ctype.h>
using namespace std;
const int kMAX=100;
const double kEPS=10E-6;
int sg[kMAX];
int GetSG(const int &x)
{
if(sg[x]>-1)
return sg[x];
bool visit[kMAX]={false};
for(int i=0;i+2<=x;++i)
{
visit[GetSG(i)^GetSG(x-2-i)]=true;
}
int cnt=0;
while(visit[cnt]) ++cnt;
sg[x]=cnt;
return cnt;
}
int main(void)
{
#ifdef DEBUG
freopen("../stdin.txt","r",stdin);
freopen("../stdout.txt","w",stdout);
#endif
int n,m,tmp;
memset(sg,-1,sizeof(sg));
sg[0]=sg[1]=0;
while(~scanf("%d",&n) && n)
{
int ans=0;
for(int i=0;i<n;++i)
{
scanf("%d",&tmp);
ans^=GetSG(tmp);
}
if(ans)
printf("Yes
");
else
printf("No
");
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
조밀한 게임을 Scratch로 만들어 보았다. 그 1.2021년 1월 7일에 스가 총리가 긴급 사태 선언을 발령했습니다. 역시 「밀」이 좋지 않은 일이라고, 재차 생각했으므로 넷에서 보인 명작 을 마음대로 흉내내 Scratch로 만들어 보았습니다. <완성 이미지> 링크...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.