A Chess Game
Time Limit: 3000MS   Memory Limit: 65536K
Total Submissions: 3551   Accepted: 1440

Description

Let's design a new chess game. There are N positions to hold M chesses in this game. Multiple chesses can be located in the same position. The positions are constituted as a topological graph, i.e. there are directed edges connecting some positions, and no cycle exists. Two players you and I move chesses alternately. In each turn the player should move only one chess from the current position to one of its out-positions along an edge. The game does not end, until one of the players cannot move chess any more. If you cannot move any chess in your turn, you lose. Otherwise, if the misfortune falls on me... I will disturb the chesses and play it again.

Do you want to challenge me? Just write your program to show your qualification!

Input

Input
contains multiple test cases. Each test case starts with a number N (1
<= N <= 1000) in one line. Then the following N lines describe the
out-positions of each position. Each line starts with an integer Xi
that is the number of out-positions for the position i. Then Xi integers
following specify the out-positions. Positions are indexed from 0 to
N-1. Then multiple queries follow. Each query occupies only one line.
The line starts with a number M (1 <= M <= 10), and then come M
integers, which are the initial positions of chesses. A line with number
0 ends the test case.

Output

There
is one line for each query, which contains a string "WIN" or "LOSE".
"WIN" means that the player taking the first turn can win the game
according to a clever strategy; otherwise "LOSE" should be printed.

Sample Input

4
2 1 2
0
1 3
0
1 0
2 0 2
0 4
1 1
1 2
0
0
2 0 1
2 1 1
3 0 1 3
0

Sample Output

WIN
WIN
WIN
LOSE
WIN

Hint

Huge input,scanf is recommended.

Source

PKU Monthly,CHEN Shixi(xreborner)

【思路】

SG函数。

把每个询问视作一组游戏,ans为每组游戏sg函数的xor值。

sg(x)=mex(S),其中mex(S)表示取后继集合所没有出现的sg值中最小的一个。

  做这道题学到了一个有意思的经验:因为vis每一层dfs都会独立用到,所以如果放在dfs外面声明为全局变量的话vis就会被接下来的dfs所覆盖。

【代码】

  

 #include<cstdio>
#include<vector>
#include<cstring>
#include<iostream>
#define FOR(a,b,c) for(int a=(b);a<(c);a++)
using namespace std; const int N = +; int n,m,sg[N];
vector<int> G[N]; int dfs(int u) {
if(sg[u]!=-) return sg[u];
int vis[N];
memset(vis,,sizeof(vis));
FOR(i,,G[u].size())
vis[dfs(G[u][i])]=;
for(int i=;;i++)
if(!vis[i]) return sg[u]=i;
}
int main() {
while(scanf("%d",&n)==) {
FOR(i,,n) G[i].clear();
int v;
FOR(i,,n) {
scanf("%d",&m);
FOR(j,,m) {
scanf("%d",&v);
G[i].push_back(v);
}
}
memset(sg,-,sizeof(sg));
while(scanf("%d",&m) && m) {
int ans=,q;
FOR(i,,m)
scanf("%d",&q) , ans^=dfs(q);
if(ans) puts("WIN"); else puts("LOSE");
}
}
return ;
}

最新文章

  1. 前端导出Excel兼容写法
  2. swift中Range的使用书名
  3. window10系统安装SQL数据库和小蝴蝶的问题
  4. rem自适应布局的回顾总结
  5. Octopus系列之UploadValues异步上载
  6. mvc与三层结构终极区别
  7. Google Code Jam 2009, Round 1C C. Bribe the Prisoners (记忆化dp)
  8. Kakfa揭秘 Day7 Producer源码解密
  9. 关于UIImage类的对象两种初始化方法的区别
  10. memcpy内存拷贝及优化策略图解
  11. EntityFramework在不同数据库下的配置
  12. Centos5.5内核升级
  13. 从Hash Killer I、II、III论字符串哈希
  14. 3.Maven坐标和依赖
  15. Less的转义字符
  16. 将html5项目部署到tomcat上,并实现安卓手机访问
  17. spring-cloud-eureka服务注册与发现
  18. Css实现手机端页面强制横屏的方法示例
  19. 【学习总结】Markdown 使用的正确姿势
  20. .net读取Excel转datatable、.net读取的Excel存在合并单元格并且转成datatable

热门文章

  1. hdoj (1162) 最小生成树
  2. 过滤HTML
  3. 重要业务MySQL冷备解决方案
  4. 使用Express搭建服务器
  5. XPATH 注入的介绍与代码防御
  6. 帝国cms7.0修改“信息提示”框
  7. 精通 Oracle+Python,第 4 部分:事务和大型对象
  8. Mac下修改Mysql密码
  9. SNN--Second Name Node
  10. 从gcc的__attribute__((packed))聊到结构体大小的问题