• Life Winner Bo HDU


    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(1,1)(1,1) 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 (1,1)(1,1).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). 
    
    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 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≤1000,2≤N,M≤1000,1≤type≤4T≤1000,2≤N,M≤1000,1≤type≤4
    Output
    For each question,print the answer.
    Sample Input
    4
    1 5 5
    2 5 5
    3 5 5
    4 5 5
    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[1005][1005];
    int SG3[1005][1005];
    int a,n,m;
    
    bool visit[1005];
    void getSG1(){
        memset(SG,0,sizeof(SG));
        for(int i=1;i<=1001;i++){
            for(int j=1;j<=1001;j++){
                memset(visit,0,sizeof(visit));
                if(i-1>0) visit[SG[i-1][j]]=true;
                if(j-1>0) visit[SG[i][j-1]]=true;
                if(i-1>0&&j-1>0)visit[SG[i-1][j-1]]=true;
                for(int k=0;;k++){
                    if(visit[k]==0){
                        SG[i][j]=k;
                        break;
                    }
                }
            }
        }
    }
    void getSG3(){
        memset(SG3,-1,sizeof(SG3));
        SG3[1][1]=0;
        for(int i=4;i<=1001;i=i+3){
            SG3[i][i]=0;
            SG3[i-1][i-2]=1;
            SG3[i-2][i-1]=1;
        }
    }
    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==1){
                if(SG[n][m]) printf("B
    ");
                else printf("G
    ");
           }
           else if(a==2){
                if((n^m)) printf("B
    ");
                else printf("G
    ");
           }
           else if(a==3){
                if(SG3[n][m]==1) printf("B
    ");
                else if(SG3[n][m]==-1)printf("D
    ");
                else printf("G
    ");
           }
           else if(a==4){
                n--;
                m--;
                if(n<m) swap(n,m);
                int k=n-m;
                n=(int)(k*(1+sqrt(5))/2.0);
                if(n==m) printf("G
    ");
                else printf("B
    ");
           }
        }
        return 0;
    }
    View Code

    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&1)&&(b&1))
        prb();
        else
        pra();
    }
    void solve2()
    {
        if((a^b)!=0) pra();
        else prb();
    }
    void solve3()
    {
        a--;
        b--;
        if((a+b)%3!=0)
        prc();
        else
        {
            if(a<b) swap(a,b);
            if(a==b) prb();
            else if((a-b)==1) pra(); //()
            else prc();
        }
    }
    void solve4()
    {
        a--;
        b--;
        if(a>b)
        swap(a,b);
        c=b-a;
        if(a==int((sqrt(5)+1)/2*c))
        prb();
        else
        pra();
    }
    int main()
    {
        cin>>t;
        while(t--)
        {
            cin>>c>>a>>b;
            if(c==1) solve1();
            else if(c==2) solve2();
            else if(c==3) solve3();
            else if(c==4) solve4();
        }
        return 0;
    }
    View Code
  • 相关阅读:
    针对Python基本数据类型的操作
    Could not transfer artifact org.apache.maven.plugins:maven-clean-plugin:pom:2.5 from 这类问题的解决方法
    校招有感:计算机专业毕业生如何找工作(Java方向)
    我用了半年的时间,把python学到了能出书的程度
    Java面试官经验谈:如何甄别候选人真实的能力,候选人如何展示值钱技能
    Java字节码与反射机制
    以我的亲身经历,聊聊学python的流程,同时推荐学python的书
    面试时通过volatile关键字,全面展示线程内存模型的能力
    如果很好说出finalize用法,面试官会认为你很资深
    C# post json和接收json
  • 原文地址:https://www.cnblogs.com/astonc/p/9998580.html
Copyright © 2020-2023  润新知