http://acm.hdu.edu.cn/showproblem.php?pid=2147是个博弈的题目,不过通过画图找出它们的规律来效率高。
N N N N .....
P N P N .....
N N N N .....
P N P N .....//p表示失败,N表示成功
#include <iostream>
using namespace std;
int main()
{
int m,n;
while(scanf("%d%d",&m,&n)!=EOF,m+n)
{
if(n&1 && m&1)
printf("What a pity!\n");
else
printf("Wonderful!\n");
}
return 0;
}
posted on 2011-09-17 23:17
大大木马 阅读(713)
评论(4) 编辑 收藏 引用