title: CodeForces 786A Berzerk

data: 2018-3-3 10:29:40

tags:

  • 博弈论
  • bfs
  • 无限
  • with draw

    copyright: true

    categories:
  • 信息学竞赛
  • 题目

    description: 有一个环, 1的位置是黑洞, 有一个怪物在任意位置上, 两个人依次行动, 可以将怪物移动自己决策集合中的任意步, 谁先把它送进黑洞谁就赢, 请输出当怪物在任意位置和谁先手的各自的胜负情况, 有平局.

A. Berzerk

description

  Rick and Morty are playing their own version of Berzerk (which has nothing in common with the famous Berzerk game). This game needs a huge space, so they play it with a computer.

  In this game there are n objects numbered from 1 to n arranged in a circle (in clockwise order). Object number 1 is a black hole and the others are planets. There's a monster in one of the planet. Rick and Morty don't know on which one yet, only that he's not initially in the black hole, but Unity will inform them before the game starts. But for now, they want to be prepared for every possible scenario.

  Each one of them has a set of numbers between 1 and n - 1 (inclusive). Rick's set is s1 with k1 elements and Morty's is s2 with k2 elements. One of them goes first and the player changes alternatively. In each player's turn, he should choose an arbitrary number like x from his set and the monster will move to his x-th next object from its current position (clockwise). If after his move the monster gets to the black hole he wins.

  Your task is that for each of monster's initial positions and who plays first determine if the starter wins, loses, or the game will stuck in an infinite loop. In case when player can lose or make game infinity, it more profitable to choose infinity game.

Input

  The first line of input contains a single integer n (\(2 ≤ n ≤ 7000\)) — number of objects in game.

  The second line contains integer k1 followed by k1 distinct integers s1, 1, s1, 2, ..., s1, k1 — Rick's set.

  The third line contains integer k2 followed by k2 distinct integers s2, 1, s2, 2, ..., s2, k2 — Morty's set

\(1 ≤ ki ≤ n - 1\ and\ 1 ≤ si, 1, si, 2, ..., si, ki ≤ n - 1\ for\ 1 ≤ i ≤ 2.\)

Output

  In the first line print n - 1 words separated by spaces where i-th word is "Win" (without quotations) if in the scenario that Rick plays first and monster is initially in object number i + 1 he wins, "Lose" if he loses and "Loop" if the game will never end.

  Similarly, in the second line print n - 1 words separated by spaces where i-th word is "Win" (without quotations) if in the scenario that Morty plays first and monster is initially in object number i + 1 he wins, "Lose" if he loses and "Loop" if the game will never end.

Examples

input #1

5

2 3 2

3 1 2 3

output #1

Lose Win Win Loop

Loop Win Win Win

input #2

8

4 6 2 3 4

2 3 6

output #2

Win Win Win Win Win Win Win

Lose Win Lose Lose Win Lose Lose

Way:

  这显然是一个无限博弈问题, 因为两人都选择最佳策略, 所以两个人有可能一直僵持下去谁也奈何不了谁, 这显然就是平局.

  显然可以用搜索搜出每个状态的所有后继状态, 根据必败态和必胜态的定义.

  • 终止状态是必败态.
  • 有一个后继状态是必败态的状态是必胜态.
  • 所以后继状态都是必胜态的状态是必败态.

  通过这样可以推出所有的必胜态和必败态.可是平局如何定义呢?后继状态有不确定状态的状态是不确定状态, 可以发现它构成了一个环.

Code

#include<algorithm>
#include<iostream>
#include<cstdlib>
#include<cstdio>
#include<queue>
#define N 7005
using namespace std; namespace Input{
inline int read(){
char ch=getchar();int s=0;
for(;!isdigit(ch);ch=getchar());
for(;isdigit(ch);s=s*10+ch-'0',ch=getchar());
return s;
}
inline void read(int &s){
char ch=getchar();
for(;!isdigit(ch);ch=getchar());
for(s=0;isdigit(ch);s=s*10+ch-'0',ch=getchar());
}
};using namespace Input;
struct Move{
int pos;
bool now;
Move(int _pos=0,bool _now=1){pos=_pos;now=_now;}
}; int mark[N][2],alt[N][2];
int vis[N][2],du[N][2];
int f[N][2],s[2],n; int mov(int pos,int step){
return (pos-step+n)%n;
}
void bfs(){
queue<Move>que;
f[0][1]=f[0][0]=2;
que.push((Move){0,0});
que.push((Move){0,1});
vis[0][1]=true;
vis[0][0]=true;
while(!que.empty()){
Move top=que.front();que.pop();
bool opt=top.now^1;
for(int i=0;i<s[opt];++i){
int to=mov(top.pos,alt[i][opt]);
if(f[top.pos][top.now]==1){
mark[to][opt]++;
if(!vis[to][opt]&&mark[to][opt]==s[opt]){
f[to][opt]=2;
vis[to][opt]=true;
que.push((Move){to,opt});
}
}
else if(!vis[to][opt]){
f[to][opt]=1;
vis[to][opt]=true;
que.push((Move){to,opt});
}
}
}
} int main(){
read(n);
read(s[0]);
for(int i=0;i<s[0];++i)read(alt[i][0]);
read(s[1]);
for(int i=0;i<s[1];++i)read(alt[i][1]);
bfs();int ans;
for(int i=1;i<n;++i){
ans=f[i][0];
printf(ans?ans==1?"Win":"Lose":"Loop");
putchar(' ');
}
putchar('\n');
for(int i=1;i<n;++i){
ans=f[i][1];
printf(ans?ans==1?"Win":"Lose":"Loop");
putchar(' ');
}
system("pause");
return 0;
}

cf786a的更多相关文章

  1. CF786A - Berzerk

    /* CF786A - Berzerk http://codeforces.com/contest/786/problem/A 博弈论 直接搜出NP状态图.记得要记忆化剪枝. * */ #includ ...

随机推荐

  1. Eclipse的Project Facets属性设置解决项目无故报错

    新检出项目,发现代码无故报错,各种尝试,最终发现是因为  项目右键中的 project Facets 属性中的 java 后面的 version 版本和项目 build path 的 jdk 版本不一 ...

  2. 洛谷:P2922 [USACO08DEC]秘密消息(Trie树)

    P2922 [USACO08DEC]秘密消息Secret Message 题目链接:https://www.luogu.org/problemnew/show/P2922 题目描述 贝茜正在领导奶牛们 ...

  3. PIP 批量更新改为清华这边的镜像更新

    之前pip批量更新的时候发现有些包无法更新,而且速度也特别慢,今天尝试了下清华的镜像,速度是真快 # coding=utf-8import pipfrom subprocess import call ...

  4. Linux下find命令及其参数的使用

    find命令原理:从指定的起始目录开始,递归地搜索其各个子目录,查找满足寻找条件的文件,并可以对其进行相关的操作. 格式:find [查找目录] [参数] [匹配模型] 多参数格式:find [查找目 ...

  5. JS如何判断是不是iphoneX

    function isIphoneX(){ return /iphone/gi.test(navigator.userAgent) && (screen.height == 812 & ...

  6. [freemarker篇]03.如何处理空值

    我想说的一点,我写的东西没有那么权威,这都是我实际开发中使用的,可能缺少很多! 例如这篇要说的如何处理空值,我发现我使用的跟网上很多写的不太一样,我也没有过多的去尝试网上的那么多写法! 抱歉,我只是写 ...

  7. rename 批量重命名

    使用背景,对规则文件名批量重命名 例如: Send_Message_20160802_01_log.log Send_Message_20160802_02_log.log Send_Message_ ...

  8. 百度地图定位API,精度提高

    我使用百度定位API DEMO上面好像就可以setCoorType("bd09ll");//百度地图坐标. 然后我找了下从其它坐标体系迁移到百度坐标. 问下: 1.那我还能不能在百 ...

  9. MongoDB入门(2)- MongoDB安装

    windows安装 下载文件,解压缩即可.下载地址 每次运行mongod --dbpath D:/MongoDB/data 命令行来启动MongoDB实在是不方便,把它作为Windows服务,这样就方 ...

  10. Cycle Sort

    Cycle sort的思想与计数排序太像了,理解了基数排序再看这个会有很大的帮助, 圈排序与计数排序的区别在于圈排序只给那些需要计数的数字计数,先看完文章吧,看完再回来理解这一句话 所谓的圈的定义,我 ...