Chess
 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 208 Accepted Submission(s): 67
 
 
Total Submission(s): 208 Accepted Submission(s): 67
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.
 
 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.
 
 
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.
 For each test case, output one line of “YES” if Alice can win the game, “NO” otherwise.
 
2 1 2 19 20 2 1 19 1 18
NO YES
 HIT
 
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5724
题目大意:n行20列的棋盘,对于每行,如果当前棋子右边没棋子,那可以直接放到右边,如果有就跳过放到其后面的第一个空位子,A先操作,最后谁无法操作则输,给定每行棋子状态,问先手是否必胜
题目分析:组合博弈问题,直接sg函数,因为列只有20,可以状压搞,枚举每个状态,找到该状态下可行的操作然后标记,sg函数结论可参考sg函数和sg定理
#include <cstdio>
#include <cstring>
int const MAX = 21;
int sg[1 << MAX], vis[MAX]; 
int get_sg(int sta)
{
    memset(vis, false, sizeof(vis));
    for(int i = 20; i >= 0; i--)
    {
        if(sta & (1 << i))
        {
            int tmp = sta;
            for(int j = i - 1; j >= 0; j--)
            {
                if(!(sta & (1 << j)))
                {
                    tmp ^= ((1 << i) ^ (1 << j));
                    vis[sg[tmp]] = true;
                    break;
                }
            }
        }
    }
    for(int i = 0; i <= 20; i++)
        if(!vis[i])
            return i;
    return 0;
}
int main()
{
    memset(sg, 0, sizeof(sg));
    for(int i = 0; i < (1 << 20); i++)
        sg[i] = get_sg(i);
    int T;
    scanf("%d", &T);
    while(T --)
    {
        int n, m, p, ans = 0;
        scanf("%d", &n);
        for(int i = 0; i < n; i++)
        {
            scanf("%d", &m);
            int sta = 0;
            while(m --)
            {
                scanf("%d", &p);
                sta |= (1 << (20 - p));
            }
            ans ^= sg[sta];
        }
        printf("%s\n", ans ? "YES" : "NO");
    }
}
 
特殊棋盘游戏策略
        
                  
                  
                  
                  
                            
                            
本文介绍了一种在n行20列棋盘上的特殊棋盘游戏。游戏中,两名玩家轮流移动棋子,若某一方无法行动则判为失败。文章通过组合博弈论中的SG函数分析了游戏策略,并提供了一个具体的实现代码。
          
      
          
                
                
                
                
              
                
                
                
                
                
              
                
                
              
            
                  
					2788
					
被折叠的  条评论
		 为什么被折叠?
		 
		 
		
    
  
    
  
            


            