码迷,mamicode.com
首页 > 其他好文 > 详细

codeforces 493D Vasya and Chess(博弈?)

时间:2014-12-04 18:05:59      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   ar   os   sp   for   on   ef   

传送门:点击打开链接


题目大意:

给一个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(博弈?)

标签:style   http   io   ar   os   sp   for   on   ef   

原文地址:http://blog.csdn.net/tsxhl111/article/details/41725947

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!