首页 > 其他 > 详细

URAL 1639. Chocolate 2

时间:2015-03-24 23:09:47      阅读:361      评论:0      收藏:0      [点我收藏+]

1639. Chocolate 2

Time limit: 1.0 second
Memory limit: 64 MB
Little Boy is mad at Karlsson, who ate all the sweets in the flat and even went to the neighbours to eat their sweets too. Now Little Boy‘s parents brought home a chocolate bar, and, sure enough, Karlsson is here already and wants to eat it. However, this time Little Boy has firmly decided that not a single piece of chocolate will go to this glutton. Little Boy wants to use Karlsson‘s addiction to the games of chance and suggests playing the following game. A chocolate bar can be considered as a rectangle of square “units” arranged in m rows and n columns and separated by “lines”. Two players take alternate turns. At his turn, a player must take one piece of chocolate and split it into two along one of the lines. If a player can‘t make a legal move (which happens when all pieces of chocolate consist of a single unit square), he loses, and the winner takes all the chocolate.
But Karlsson is smart enough! He immediately understood who should make the first turn in order for Karlsson to win, assuming that players take optimal turns. Can you guess that?

Input

The only line of the input contains space-separated integers m and n (1 ≤ mn ≤ 50).

Output

If Karlsson should start the game in order to win, output “[:=[first]”; otherwise, output “[second]=:]”.

Samples

input output
2 4
[:=[first]
1 3
[second]=:]


大意是将巧克力掰到不能再掰开为止,根据这个规则选择第一个还是第二个

#include<cstdio>
#include<iostream>
using namespace std;
int main()
{
    int m,n;
    while(cin>>m>>n)
    {
        if(m*n%2)
            cout<<"[second]=:]"<<endl;
        else
            cout<<"[:=[first]"<<endl;
    }
    return 0;
}


URAL 1639. Chocolate 2

原文:http://blog.csdn.net/novak_djokovic/article/details/44597585

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!