zoukankan      html  css  js  c++  java
  • LightOJ 1315

    G - Game of Hyper Knights
    Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%lld & %llu
    Submit Status

    Description

    A Hyper Knight is like a chess knight except it has some special moves that a regular knight cannot do. Alice and Bob are playing this game (you may wonder why they always play these games!). As always, they both alternate turns, play optimally and Alice starts first. For this game, there are 6 valid moves for a hyper knight, and they are shown in the following figure (circle shows the knight).

     

    They are playing the game in an infinite chessboard where the upper left cell is (0, 0), the cell right to (0, 0) is (0, 1). There are some hyper knights in the board initially and in each turn a player selects a knight and gives a valid knight move as given. And the player who cannot make a valid move loses. Multiple knights can go to the same cell, but exactly one knight should be moved in each turn.

    Now you are given the initial knight positions in the board, you have to find the winner of the game.

    Input

    Input starts with an integer T (≤ 200), denoting the number of test cases.

    Each case starts with a line containing an integer n (1 ≤ n ≤ 1000) where n denotes the number of hyper knights. Each of the next n lines contains two integers x y(0 ≤ x, y < 500) denoting the position of a knight.

    Output

    For each case, print the case number and the name of the winning player.

    Sample Input

    2

    1

    1 0

    2

    2 5

    3 5

    Sample Output

    Case 1: Bob

    Case 2: Alice

    题意:有n个骑士(1<=n<=1000)在无限的棋盘中,给定n个骑士的坐标(xi,yi),(0<=xi,yi<500)。
    骑士每一步有六种走法,最后不能移动骑士的算输,问先手胜还是后手胜。
    思路:n个骑士相互独立,所以可以应用SG定理。
    其一,注意到骑士总是往左边走,并且,是在当前对角线的左边,所以在计算每一格的SG函数时可以按照row+col为定值依次计算。
    其二,注意到骑士只有六种走法,所以对于每一格的SG函数值SG(x,y)不会超过6。

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    using namespace std;
    int next[6][2]={{-2,1},{1,-2},{-2,-1},{-1,-2},{-3,-1},{-1,-3}};
    #define maxn 1005
    int sg[maxn][maxn];
    int dfs(int x,int y)
    {
        int vis[105]={0}; //注意该数组是一维的 表示该点后继的sg值的情况
        if(sg[x][y]!=-1)
            return sg[x][y];
        for(int i=0;i<6;i++)
        {
            int nx=x+next[i][0];
            int ny=y+next[i][1];
            if(nx>=0&&ny>=0) //注意不能不加符号就判断 等于0也是算在内的
                vis[dfs(nx,ny)]=1; //因为可能走到的点的sg值还没有求过 所以要用递归深搜
                //之前写的非递归是因为之前的sg值都求过了 不用搜索也可以
        }
        for(int j=0;j<100;j++)
        if(!vis[j]) return sg[x][y]=j;
    }
    int main()
    {
        memset(sg,-1,sizeof(sg)); //这里定义成-1 比0 好 因为有的就是0 if的时候0还要再算一次浪费时间
        int t,cas=1;
        cin>>t;
        while(t--)
        {
            int n,x,y,ans=0;
            cin>>n;
            for(int i=0;i<n;i++)
            {
                cin>>x>>y;
                ans^=dfs(x,y);
            }
            printf("Case %d: %s
    ",cas++,ans?"Alice":"Bob");
        }
        return 0;
    }
  • 相关阅读:
    Sqli-labs Less-28a 绕过unions+select过滤 union注入
    eclipse安装freemarker-ide插件
    Eclipse调试时出现source not found的问题
    POJ 1509 Glass Beads 后缀自动机 模板 字符串的最小表示
    1028/3/7 被踩爆的省选模拟赛 30分
    字符串的模板 Manacher kmp ac自动机 后缀数组 后缀自动机
    2018/3/6 省选模拟赛 60分
    埃及分数 a* 搜索 知识点mark
    UOJ #35. 后缀排序 后缀数组 模板
    BZOJ 4566 JZYZOJ 1547 [haoi2016T5]找相同子串 后缀数组 并查集
  • 原文地址:https://www.cnblogs.com/Ritchie/p/5396852.html
Copyright © 2011-2022 走看看