首页 > 代码库 > codeforces 493D Vasya and Chess(博弈?)

codeforces 493D Vasya and Chess(博弈?)

传送门:点击打开链接


题目大意:

给一个N*N的棋盘。然后一开始 白队的Queen在(1,1),黑队的Queen在(1,n)。

其余的点都是绿棋子。

Queen可以走横竖和斜线。(就是国际象棋里面Queen的走法,但是必须要吃子)。

问白方先走。谁能嬴(没得走或者被吃了就死了)


解题思路:

博弈题。。习惯性乱猜 就过了。写的比A还快。

猜法如下:每个人各走一步,可以使得总奇偶性不变。然后只要知道一开始的距离的奇偶性。就知道谁先死了。(勿喷)

#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;
int main()
{
    int n;
    cin >> n;
    if(n&1)
        printf("black\n");
    else
        printf("white\n1 2\n");
    return 0;
}


codeforces 493D Vasya and Chess(博弈?)