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

hdu2174 kiki's game 博弈

时间:2017-03-21 00:01:19      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:pac   分享   images   close   logs   while   turn   技术   pre   

Recently kiki has nothing to do. While she is bored, an idea appears in his mind, she just playes the checkerboard game.The size of the chesserboard is n*m.First of all, a coin is placed in the top right corner(1,m). Each time one people can move the coin into the left, the underneath or the left-underneath blank space.The person who can‘t make a move will lose the game. kiki plays it with ZZ.The game always starts with kiki. If both play perfectly, who will win the game?

博弈

 

技术分享
 1 #include<stdio.h>
 2 
 3 int main(){
 4     int n,m;
 5     while(scanf("%d%d",&n,&m)!=EOF&&n+m){
 6         if((n-1)%2||(m-1)%2)printf("Wonderful!\n");
 7         else printf("What a pity!\n");
 8     }
 9     return 0;
10 }
View Code

 

hdu2174 kiki's game 博弈

标签:pac   分享   images   close   logs   while   turn   技术   pre   

原文地址:http://www.cnblogs.com/cenariusxz/p/6592353.html

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