【题目链接】:http://codeforces.com/contest/787/problem/C

【题意】



给你怪物一开始所在的位置;

然后两人轮流操作;

可以选择让这个怪物前进自己的集合里面所拥有的数字所代表的步数;

对于2..n这些怪物的起点以及谁先进行游戏这些信息;

让这个怪物到位置1的人赢

判断谁能赢,输,或者游戏一直循环下去

【题解】



设f[i][j]表示i先玩,然后怪物一开始的位置为j的结果;



//-2表示输,-1表示赢,0表示不确定

f[1][1]=f[2][1]=-2;

即如果谁面临了怪物到达了1这个位置这个状态,他就输了;

因为这表示对方已经完成游戏了;

这样就代表先手输了;

然后对于这些为-2的状态;

可以往前推前一个人的状态;



前一个人,他走一步(通过自己集合里面的步数)到达了-2的状态;

也就是说让对方面临了先手输的状态,本来你是先手,然后你走一步,对方就变成先手啦,那么对方面临了先手输的状态,那么你就赢了;

因此对于所有能够走到-2的状态;

置其状态为先手赢;

然后再去找那些;

无论用集合里面哪个元素走,都会让对方面临先手赢状态的状态;

这些状态,置它们为先手输;

因为它们无论怎么走,对方都能面对先手赢的状态;

然后对于其他的状态,都是不确定.

写个倒推就好;

具体看代码



【完整代码】

#include <bits/stdc++.h>
using namespace std;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define LL long long
#define rep1(i,a,b) for (int i = a;i <= b;i++)
#define rep2(i,a,b) for (int i = a;i >= b;i--)
#define mp make_pair
#define pb push_back
#define fi first
#define se second
#define rei(x) scanf("%d",&x)
#define rel(x) scanf("%lld",&x)
#define ref(x) scanf("%lf",&x) typedef pair<int,int> pii;
typedef pair<LL,LL> pll; const int dx[9] = {0,1,-1,0,0,-1,-1,1,1};
const int dy[9] = {0,0,0,-1,1,-1,1,-1,1};
const double pi = acos(-1.0);
const int N = 7e3+100; int k[3],n;
int s[3][N];
int g[3][N];
queue <pii> dl; void in()
{
rei(n);
rep1(i,1,2)
{
rei(k[i]);
rep1(j,1,k[i])
rei(s[i][j]);
}
} void get_ans()
{
dl.push(mp(1,1)),dl.push(mp(2,1));
g[1][1] = -2,g[2][1] = -2;
while (!dl.empty())
{
int f = dl.front().fi,x = dl.front().se;
int nex = 3-f;
dl.pop();
rep1(i,1,k[nex])
{
int y = x-s[nex][i];
if (y<=0)
y+=n;
if (g[f][x]==-2)
{
if (g[nex][y]!=-1)
{
g[nex][y] = -1;
dl.push(mp(nex,y));
}
}
else
{//g[f][x] = -1
if (g[nex][y]<0) continue;//如果已经确定了,就不用计数了
g[nex][y]++;//用来记录这个状态用集合里面的元素走一步会遇到多少个先手赢的状态,这里是直接在这个数组上计数,一数组两用
if (g[nex][y]==k[nex])//如果全都是先手赢,那么这个状态就是先手输
{
g[nex][y] = -2;
dl.push(mp(nex,y));
}
}
}
}
} void o()
{
rep1(i,2,n)
{
if (g[1][i]==-2)
printf("Lose");
else
if (g[1][i]==-1)
printf("Win");
else
printf("Loop");
if (i==n)
puts("");
else
putchar(' ');
}
rep1(i,2,n)
{
if (g[2][i]==-2)
printf("Lose");
else
if (g[2][i]==-1)
printf("Win");
else
printf("Loop");
if (i==n)
puts("");
else
putchar(' ');
}
} int main()
{
//freopen("F:\\rush.txt","r",stdin);
in();
get_ans();
o();
//printf("\n%.2lf sec \n", (double)clock() / CLOCKS_PER_SEC);
return 0;
}

【codeforces 787C】Berzerk的更多相关文章

  1. 【codeforces 415D】Mashmokh and ACM(普通dp)

    [codeforces 415D]Mashmokh and ACM 题意:美丽数列定义:对于数列中的每一个i都满足:arr[i+1]%arr[i]==0 输入n,k(1<=n,k<=200 ...

  2. 【codeforces 707E】Garlands

    [题目链接]:http://codeforces.com/contest/707/problem/E [题意] 给你一个n*m的方阵; 里面有k个联通块; 这k个联通块,每个连通块里面都是灯; 给你q ...

  3. 【codeforces 707C】Pythagorean Triples

    [题目链接]:http://codeforces.com/contest/707/problem/C [题意] 给你一个数字n; 问你这个数字是不是某个三角形的一条边; 如果是让你输出另外两条边的大小 ...

  4. 【codeforces 709D】Recover the String

    [题目链接]:http://codeforces.com/problemset/problem/709/D [题意] 给你一个序列; 给出01子列和10子列和00子列以及11子列的个数; 然后让你输出 ...

  5. 【codeforces 709B】Checkpoints

    [题目链接]:http://codeforces.com/contest/709/problem/B [题意] 让你从起点开始走过n-1个点(至少n-1个) 问你最少走多远; [题解] 肯定不多走啊; ...

  6. 【codeforces 709C】Letters Cyclic Shift

    [题目链接]:http://codeforces.com/contest/709/problem/C [题意] 让你改变一个字符串的子集(连续的一段); ->这一段的每个字符的字母都变成之前的一 ...

  7. 【Codeforces 429D】 Tricky Function

    [题目链接] http://codeforces.com/problemset/problem/429/D [算法] 令Si = A1 + A2 + ... + Ai(A的前缀和) 则g(i,j) = ...

  8. 【Codeforces 670C】 Cinema

    [题目链接] http://codeforces.com/contest/670/problem/C [算法] 离散化 [代码] #include<bits/stdc++.h> using ...

  9. 【codeforces 515D】Drazil and Tiles

    [题目链接]:http://codeforces.com/contest/515/problem/D [题意] 给你一个n*m的格子; 然后让你用1*2的长方形去填格子的空缺; 如果有填满的方案且方案 ...

随机推荐

  1. Java web开发了解

    1.什么是Java web项目? F.A.Q: 服务器 服务器,也称伺服器,是提供计算服务的设备.由于服务器需要响应服务请求,并进行处理,因此一般来说服务器应具备承担服务并且保障服务的能力.服务器的构 ...

  2. VIP的转移

    首先查看vip在各个节点的状态 [root@rac2 ~]# ifconfig eth0 Link encap:Ethernet HWaddr 08:00:27:C9:28:D0 inet addr: ...

  3. ajax中打开新页面使用window.open方法被拦截的解决方法

    $('.testA').unbind('click').bind('click',function(){ var result=""; $.ajax({ url:'http://l ...

  4. jmeter--基本组件介绍

    一.JMeter 介绍 Apache JMeter是100%纯Java桌面应用程序,被设计为用于测试客户端/服务端结构的软件(例如web应用程序).它可以用来测试静态和动态资源的性能,例如:静态文件, ...

  5. js进阶 13-2 jquery动画滑动效果哪些注意事项

    js进阶 13-2 jquery动画滑动效果哪些注意事项 一.总结 一句话总结:滑动里面这里up是隐藏,down是显示. 1.jquery动画默认的两个切换效果是什么(swing默认和linear的区 ...

  6. js课程 5-13 js事件绑定和鼠标事件注意事项有哪些

    js课程 5-13  js事件绑定和鼠标事件注意事项有哪些 一.总结 一句话总结:js代码的灵魂就是改变标签的属性和样式,就这两种. 1.js触发改的东西是哪两样? 属性和样式 2.js如何让页面用标 ...

  7. RTC时钟和BKP的配置stm32

    摘自:https://blog.csdn.net/gtkknd/article/details/52233605 RTC和后备寄存器通过一个开关供电,在VDD有效的时候选择VDD供电,否则选择VBAT ...

  8. PDO中获取结果集

    fetch()方法 fetch()方法用于获取结果集的下一行.语法例如以下: mixed PDOStatement::fetch([int fetch_style][,int cursor_orien ...

  9. leetcode-combination sum and combination sum II

    Combination sum: Given a set of candidate numbers (C) and a target number (T), find all unique combi ...

  10. 【81.82%】【codeforces 740B】Alyona and flowers

    time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...