首页 > 代码库 > HDU 5754 Life Winner Bo 组合博弈
HDU 5754 Life Winner Bo 组合博弈
Life Winner Bo
Problem Description
Bo is a "Life Winner".He likes playing chessboard games with his girlfriend G.
The size of the chessboard is N×M.The top left corner is numbered(1,1) and the lower right corner is numberd (N,M).
For each game,Bo and G take turns moving a chesspiece(Bo first).At first,the chesspiece is located at (1,1).And the winner is the person who first moves the chesspiece to (N,M).At one point,if the chess can‘t be moved and it isn‘t located at (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),it can be moved to the next point (x′,y′) only if x′≥x and y′≥y.Also it can‘t be moved to the outside of chessboard.
Besides,There are four kinds of chess(They have movement rules respectively).
1.king.
2.rook(castle).
3.knight.
4.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.
The size of the chessboard is N×M.The top left corner is numbered(1,1) and the lower right corner is numberd (N,M).
For each game,Bo and G take turns moving a chesspiece(Bo first).At first,the chesspiece is located at (1,1).And the winner is the person who first moves the chesspiece to (N,M).At one point,if the chess can‘t be moved and it isn‘t located at (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),it can be moved to the next point (x′,y′) only if x′≥x and y′≥y.Also it can‘t be moved to the outside of chessboard.
Besides,There are four kinds of chess(They have movement rules respectively).
1.king.
2.rook(castle).
3.knight.
4.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 T as a case number.
In the next T lines,there are three numbers type,N and M.
"type" means the kind of the chess.
T≤1000,2≤N,M≤1000,1≤type≤4
In the next T lines,there are three numbers type,N and M.
"type" means the kind of the chess.
T≤1000,2≤N,M≤1000,1≤type≤4
Output
For each question,print the answer.
Sample Input
41 5 52 5 53 5 54 5 5
Sample Output
GGDB
题意:
4种棋。
棋子首先在(1,1),你要移动到(n,m);
谁先移动到终点谁就赢了,注意骑士可能走向平局
题解:
首先国王可以预处理答案
皇后是威佐夫博弈
车是个典型的nim博弈
骑士呢,你注意到有个平局,就是说,如果当前走下一个状态的时候,面临了必败和平局的情况,你是要走平局的,这个点注意一下就能AC了
#include<bits/stdc++.h>using namespace std;#pragma comment(linker, "/STACK:102400000,102400000")#define ls i<<1#define rs ls | 1#define mid ((ll+rr)>>1)#define pii pair<int,int>#define MP make_pairtypedef long long LL;const long long INF = 1e18+1LL;const double Pi = acos(-1.0);const int N = 3e3+100, M = 2e5+20, mod = 1e9+7, inf = 2e9;int h[5],gw[N][N],qs[N][N];void init() { gw[0][0] = 0; for(int i = 0; i <= 1000; ++i) { for(int j = 0; j <= 1000; ++j) { memset(h,0,sizeof(h)); if(i>=1)h[gw[i-1][j]] = 1; if(j>=1)h[gw[i][j-1]] = 1; if(i>=1&&j>=1) h[gw[i-1][j-1]] = 1; if(h[0]) gw[i][j]=1; else gw[i][j] = 0; } } memset(qs,-1,sizeof(qs)); qs[0][0] = 0;int cnt = 0; for(int i = 0; i <= 1000; ++i) { for(int j = 0; j <= 1000; ++j) { int ok = 0; memset(h,0,sizeof(h)); if(i>=2&&j>=1&&qs[i-2][j-1]!=-1&&qs[i-2][j-1]<=4)h[qs[i-2][j-1]] = 1,ok = 1; if(j>=2&&i>=1&&qs[i-1][j-2]!=-1&&qs[i-1][j-2]<=4)h[qs[i-1][j-2]] = 1,ok++; if(i == 0 && j == 0) continue; if(ok) { if(h[0]) qs[i][j] = 1; else if(!h[0] && ok < 2) qs[i][j] = -1; else qs[i][j] = 0; } else qs[i][j] = -1; } } // cout<<cnt<<endl; // cout<<qs[1][2]<<endl;}int main() { int T;init(); scanf("%d",&T); while(T--) { int type,n,m; scanf("%d%d%d",&type,&n,&m); n--,m--; if(type == 1) {//国王 if(gw[n][m])printf("B\n"); else printf("G\n"); } else if(type == 2) {//车 if((n ^ m) != 0)printf("B\n"); else printf("G\n"); } else if(type == 3) {//马 if(qs[n][m]==-1) printf("D\n"); else if(qs[n][m]) printf("B\n"); else printf("G\n"); } else {//皇后 if(n > m) swap(n,m); double k = (sqrt(5)-1.0)/2.0; int j = n * k; if(n != (int) (j*(1+k))) j++; if(n + j == m) printf("G\n"); else printf("B\n"); } } return 0;}
HDU 5754 Life Winner Bo 组合博弈
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。