日本黄色一级经典视频|伊人久久精品视频|亚洲黄色色周成人视频九九九|av免费网址黄色小短片|黄色Av无码亚洲成年人|亚洲1区2区3区无码|真人黄片免费观看|无码一级小说欧美日免费三级|日韩中文字幕91在线看|精品久久久无码中文字幕边打电话

當前位置:首頁 > 芯聞號 > 充電吧
[導讀]題面:Chess Time Limit: 2000/1000 MS (Java/Others)????Memory Limit: 65536/65536 K (Java/Others)Total Su

題面:


Chess Time Limit: 2000/1000 MS (Java/Others)????Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 450????Accepted Submission(s): 165


Problem Description Alice and Bob are playing a special chess game on an n × 20 chessboard. There are several chesses on the chessboard. They can move one chess in one turn. If there are no other chesses on the right adjacent block of the moved chess, move the chess to its right adjacent block. Otherwise, skip over these chesses and move to the right adjacent block of them. Two chesses can’t be placed at one block and no chess can be placed out of the chessboard. When someone can’t move any chess during his/her turn, he/she will lose the game. Alice always take the first turn. Both Alice and Bob will play the game with the best strategy. Alice wants to know if she can win the game. ?
Input Multiple test cases.

The first line contains an integer T(T≤100), indicates the number of test cases.

For each test case, the first line contains a single integer n(n≤1000), the number of lines of chessboard.

Then n lines, the first integer of ith line is m(m≤20), indicates the number of chesses on the ith line of the chessboard. Then m integers pj(1≤pj≤20) followed, the position of each chess.
?
Output For each test case, output one line of “YES” if Alice can win the game, “NO” otherwise. ?
Sample Input


2 1 2 19 20 2 1 19 1 18 ?
Sample Output


NO YES ?
Author HIT ?
Source 2016 Multi-University Training Contest 1 ?


題意:

??? 給定一個n*20的棋盤,棋盤上有若干棋子。如果一顆棋子右側為空,則只可以向右移動一格,若非空,則可以移到第一個空的位置,兩人輪流操作,不能操作者為輸,問先者是否有必勝策略。


解題:

??? 比較簡單的博弈,通過SG值的計算即可解決問題。將游戲劃分為多個子游戲,每個游戲相互獨立,視為一行的棋盤,最后將每行的SG值異或即可。SG值的計算是,其后續(xù)狀態(tài)(即操作一步之后達到的狀態(tài))的SG值集合中未出現(xiàn)過的最小自然數(shù)。棋盤的狀態(tài)可以用二進制位表示,1代表有棋子,0代表無棋子。枚舉每個狀態(tài)的后繼,計算該狀態(tài)的SG值。


代碼:


#include#include#include#include#include#include#include#include#include#include#include#include#define?eps?1e-8
using?namespace?std;
int?dp[1100000];
//本地測試,最大值不超過30
bool?vis[30];
//尋找后續(xù)狀態(tài)
int?dfs(int?x)
{
	//記憶化搜索
	if(dp[x]!=-1)
		return?dp[x];
	int?tmp;
	memset(vis,0,sizeof(vis));
	for(int?i=0;i<19;i++)
	{
????????if((1<x)
			break;
		//找到一個和1緊鄰的0
		if(((x&(1<<i))==0)&&(x&(1<<(i+1))))
		{
		???int?j=i+2;
???????????for(;j<20;j++)
		???{
			???if(x&(1<<j))
				???continue;
			???else
				???break;
		???}
		???j--;
		???//逐次替換連續(xù)1塊中的每一塊
		???for(int?k=i+1;k<=j;k++)
		???{
??????????????tmp=(x-(1<<k)+(1<<i));
			??tmp=dfs(tmp);
			??vis[tmp]=1;
		???}
		}
	}
	for(int?i=0;;i++)
	{
		if(!vis[i])
	????{
			dp[x]=i;
			break;
		}
	}
	return?dp[x];
}	
int?main()
{
	memset(dp,-1,sizeof(dp));
	//初始化必輸態(tài)
	for(int?i=0;i<=20;i++)
		dp[(1<<i)-1]=0;
	for(int?i=1;i<=1100000;i++)
	{
		if(dp[i]==-1)
			dp[i]=dfs(i);
	}
	int?t,n,m,status,res,tmp;
	scanf("%d",&t);
	while(t--)
	{
		scanf("%d",&n);
		res=0;
		for(int?i=0;i<n;i++)
		{
			status=0;
			scanf("%d",&m);
			for(int?j=0;j<m;j++)
????????????{
				//構建進制表示狀態(tài)
				scanf("%d",&tmp);
				status+=(1<<(20-tmp));
			}
			//異或得出結果
			res^=dp[status];
		}
		if(res)
			printf("YESn");
		else
			printf("NOn");
	}
	return?0;
}



本站聲明: 本文章由作者或相關機構授權發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點,本站亦不保證或承諾內容真實性等。需要轉載請聯(lián)系該專欄作者,如若文章內容侵犯您的權益,請及時聯(lián)系本站刪除( 郵箱:macysun@21ic.com )。
換一批
延伸閱讀
關閉