Bo is a "Life Winner".He likes playing chessboard games with his girlfriend G. 

The size of the chessboard is N×MN×M.The top left corner is numbered(,)(,) and the lower right corner is numberd (N,M)(N,M). 

For each game,Bo and G take turns moving a chesspiece(Bo first).At first,the chesspiece is located at (,)(,).And the winner is the person who first moves the chesspiece to (N,M)(N,M).At one point,if the chess can't be moved and it isn't located at (N,M)(N,M),they end in a draw. 

In general,the chesspiece can only be moved right or down.Formally,suppose it is located at (x,y)(x,y),it can be moved to the next point (x′,y′)(x′,y′) only if x′≥xx′≥x and y′≥yy′≥y.Also it can't be moved to the outside of chessboard. 

Besides,There are four kinds of chess(They have movement rules respectively). 

.king. 

.rook(castle). 

.knight. 

.queen. 

(The movement rule is as same as the chess.) 

For each type of chess,you should find out that who will win the game if they both play in an optimal strategy. 

Print the winner's name("B" or "G") or "D" if nobody wins the game.
Input
In the first line,there is a number TT as a case number. In the next TT lines,there are three numbers type,NN and MM. "type" means the kind of the chess. T≤,≤N,M≤,≤type≤4T≤,≤N,M≤,≤type≤
Output
For each question,print the answer.
Sample Input Sample Output
G
G
D
B

Problem Description

以下解释参考:

https://blog.csdn.net/xtulollipop/article/details/52046874

https://www.cnblogs.com/Ritchie/p/5708601.html

我也看了老半天,真是渣渣

问给一种棋子,两人轮流走,只能向右或下下走,最后到N,M的赢。
1、王(King):横、直、斜都可以走,但每次限走一步
2、车(Rook):横、竖均可走,不能斜走,格数不受限制,除王车易位的情况下,平时不能越子
3、马(Knight):每步棋先横走或竖走一格,再斜走一格(或者横两格竖一格,竖两格横一格),可以越子
4、后(Queen):横、竖、斜都可以走,格数不受限制,但不能越子

1.王   拿SG预处理一下

你也可以找出规律发现:当n和m全为奇数时,先手必败。

2.车   到达终点时总要走n行,m列。可以把他们看成Nim的两堆石子。Nim游戏 ,异或一下

3.马   因为我们只考虑必胜必败态,其他的可能赢或输的点,我总是不走过去,会使得这个是平局。。打表

观察图表:先n--,m--,把问题转化为(0,0)是终点,如果n+m不是3的倍数一定是平局;如果是3的倍数,如果nm相等,那么一定是必败的,先手减2减1,后手就减1减2,必败;如果nm不等且n=m+1或者m=n+1,那么先手必胜,因为可以一步走到必败点,必胜;其余情况都是平局,因为如果一方存在赢的情况,另一方可以不走那步,把小的数-2,大的数-1,往墙上靠,谁也赢不了肯定是平局。

4.后   和车一样考虑,就是可以拿任意堆任意个,或者拿两堆同时拿任意个,是一个标准的威佐夫博弈

AC Code:

1.

#include<cstdio>
#include<cstring>
#include<iostream>
#include<cmath>
#include<algorithm>
using namespace std; bool SG[][];
int SG3[][];
int a,n,m; bool visit[];
void getSG1(){
memset(SG,,sizeof(SG));
for(int i=;i<=;i++){
for(int j=;j<=;j++){
memset(visit,,sizeof(visit));
if(i->) visit[SG[i-][j]]=true;
if(j->) visit[SG[i][j-]]=true;
if(i->&&j->)visit[SG[i-][j-]]=true;
for(int k=;;k++){
if(visit[k]==){
SG[i][j]=k;
break;
}
}
}
}
}
void getSG3(){
memset(SG3,-,sizeof(SG3));
SG3[][]=;
for(int i=;i<=;i=i+){
SG3[i][i]=;
SG3[i-][i-]=;
SG3[i-][i-]=;
}
}
int main(){
int t;
scanf("%d",&t);
getSG1();
getSG3();
while(t--){
scanf("%d %d %d",&a,&n,&m);
if(n>m) swap(n,m);
if(a==){
if(SG[n][m]) printf("B\n");
else printf("G\n");
}
else if(a==){
if((n^m)) printf("B\n");
else printf("G\n");
}
else if(a==){
if(SG3[n][m]==) printf("B\n");
else if(SG3[n][m]==-)printf("D\n");
else printf("G\n");
}
else if(a==){
n--;
m--;
if(n<m) swap(n,m);
int k=n-m;
n=(int)(k*(+sqrt())/2.0);
if(n==m) printf("G\n");
else printf("B\n");
}
}
return ;
}

2.

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
using namespace std;
int t,a,b,c;
void pra()
{
puts("B");
}
void prb()
{
puts("G");
}
void prc()
{
puts("D");
}
void solve1()
{
if((a&)&&(b&))
prb();
else
pra();
}
void solve2()
{
if((a^b)!=) pra();
else prb();
}
void solve3()
{
a--;
b--;
if((a+b)%!=)
prc();
else
{
if(a<b) swap(a,b);
if(a==b) prb();
else if((a-b)==) pra(); //()
else prc();
}
}
void solve4()
{
a--;
b--;
if(a>b)
swap(a,b);
c=b-a;
if(a==int((sqrt()+)/*c))
prb();
else
pra();
}
int main()
{
cin>>t;
while(t--)
{
cin>>c>>a>>b;
if(c==) solve1();
else if(c==) solve2();
else if(c==) solve3();
else if(c==) solve4();
}
return ;
}

Life Winner Bo HDU - 5754的更多相关文章

  1. HDU 5754 Life Winner Bo (博弈)

    Life Winner Bo 题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=5754 Description Bo is a "Life W ...

  2. HDU 5754 Life Winner Bo 组合博弈

    Life Winner Bo Problem Description   Bo is a "Life Winner".He likes playing chessboard gam ...

  3. HDU 5754Life Winner Bo

    Life Winner Bo Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others) ...

  4. 5754Life Winner Bo

    给定一个n*m的矩阵,有四种棋子(国际象棋的王,王后,骑士,车).起点在(1,1)先走到(n,m)获胜. 分析:车是nim博弈.王后是威佐夫博弈.王和骑士写两个1000*1000的预处理即可. hdu ...

  5. hdu_5754_Life Winner Bo(博弈)

    题目链接:hdu_5754_Life Winner Bo 题意: 一个棋盘,有国王,车,马,皇后四种棋子,bo先手,都最优策略,问你赢的人,如果双方都不能赢就输出D 题解: 全部都可以直接推公式, 这 ...

  6. hdu-5754 Life Winner Bo(博弈)

    题目链接: Life Winner Bo Time Limit: 2000/1000 MS (Java/Others)     Memory Limit: 131072/131072 K (Java/ ...

  7. HDU 5754 Life Winner Bo (找规律and博弈)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5754 给你四种棋子,棋子一开始在(1,1)点,两个人B和G轮流按每种棋子的规则挪动棋子,棋子只能往右下 ...

  8. 【博弈论】HDU 5754 Life Winner Bo

    题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=5754 题目大意: 4种棋子,象棋中的 1王,2车,3马,4后,选其一,B和G轮流走,不能往左上走,一 ...

  9. HDU 5754 Life Winner Bo(各类博弈大杂合)

    http://acm.hdu.edu.cn/showproblem.php?pid=5754 题意: 给一个国际象棋的棋盘,起点为(1,1),终点为(n,m),现在每个棋子只能往右下方走,并且有4种不 ...

随机推荐

  1. P3521 [POI2011]ROT-Tree Rotations

    思路 发现每个子树内的交换情况不会对子树外造成影响,所以可以利用贪心的思想,线段树合并找出当前子树的合并的最小值直接累加给答案即可 我脑补的线段树合并貌似不太优秀的样子...每次都要新建节点,学习了直 ...

  2. P3301 [SDOI2013]方程

    思路 容斥的挺好的练习题 对于第二个条件,可以直接使m减去suma2,使得第二个条件舍去,然后m再减去n,使得问题转化成有n1个变量要满足小于等于某个数的条件,其他的随便取,求整数解的个数 对n1,以 ...

  3. Google advertiser api开发概述——批量处理

    批处理 大多数服务都提供同步 API,要求您发出请求然后等待响应,但 BatchJobService 允许您对多项服务执行批量操作,而无需等待操作完成. 与各服务的特定 mutate 操作不同,Bat ...

  4. Google advertiser api开发概述

    对象.方法和服务 AdWords API 主要供 AdWords 的高级用户使用.如果您是 AdWords 新手,或需要复习 AdWords 基本概念,请查看 AdWords 基础知识页面. 对象层级 ...

  5. js replace使用及正则表达式使用

    本文为博主原创,未经允许不得转载: js中replace方法与java中的replace方法相同,主要做替换. 表达式:stringObj.replace(rgExp, replaceText) 参数 ...

  6. JavaScript(ES5)知识点梳理

    数据类型(null undefined number string boolean object)数据类型之间的相互转化(Boolean Number String parseInt parseFlo ...

  7. JS快速构建数组方法

    一.常用(普通)数组的构建 1.1 直接构建 let arr = ['mock1', 'mock2', 'mock3'] 1.2 通过new Array let arr = newArray('moc ...

  8. _itemmod_refresh

    -- 随机FM刷新设置-- 小技巧:很多服所说的装备鉴定效果可以通过这个实现,也可以对物品重新生成新的附魔--详细解说一下鉴定系统如何实现--1首先在_itemmod_enchant_groups中添 ...

  9. 使用phpmyadmin创建数据库

    1,使用phpmyadmin也需要实现安装php环境,安装环境请参考:http://www.sitestar.cn/bbs/thread-164-1-1.html: 2,到phpmyadmin官方网站 ...

  10. 由设置body线性背景色引发的问题-----当声明文档类型时,对body设置线性背景色,页面背景色无法整体线性过渡

    问题:当声明文档类型时,对body设置线性背景色,页面背景色无法整体线性过渡 不声明文档类型时,对body设置线性背景色 <HTML> <head> <meta char ...