• hdu2147kiki's game(找规律)


    kiki's game

    Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 40000/10000 K (Java/Others)
    Total Submission(s): 13637    Accepted Submission(s): 8329


    Problem Description
    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?
     
    Input
    Input contains multiple test cases. Each line contains two integer n, m (0<n,m<=2000). The input is terminated when n=0 and m=0.

     
    Output
    If kiki wins the game printf "Wonderful!", else "What a pity!".
     
    Sample Input
    5 3 5 4 6 6 0 0
     
    Sample Output
    What a pity! Wonderful! Wonderful!

    题意:给出n*m的棋盘,一开始棋子在棋盘右上角,2人轮流走,每次可以向下,向左,左下三个方向走,没得走的那个算输

    题解:emm  手写5*3  5*4  6*6的表格,每个点的PN值,很容易看出规律:只要有偶数就是先手赢

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 int main() {
     4     int n,m;
     5     while(~scanf("%d %d",&n,&m)&&n&&m)
     6     {
     7         if(n%2==0||m%2==0)
     8         {
     9             printf("Wonderful!
    ");
    10         }else
    11         {
    12             printf("What a pity!
    ");
    13         }
    14     }
    15     return 0;
    16 }
  • 相关阅读:
    实验一、DOS使用命令实验
    实验三、进程调度模拟程序
    实验四、存储管理
    实验二、作业调度模拟程序
    简单的DOS命令
    结构化方法和面向对象方法的比较
    jstree 取消选中父节点
    T4 模板代码生成
    基于Open XML 导出数据到Excel
    菜单(列存储转为行存储)
  • 原文地址:https://www.cnblogs.com/fqfzs/p/9852259.html
Copyright © 2020-2023  润新知