• 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 }
  • 相关阅读:
    聊天软件项目UDP升级版
    聊天软件项目TCP升级版
    JVM内存管理机制
    Java for循环的几种用法详解
    HashMap解决hash冲突的方法
    Hadoop NameNode 高可用 (High Availability) 实现解析
    Hadoop2.0NameNode HA和Federation实践
    Hadoop2.0中单点故障解决方案总结---老董
    HadoopHA简述
    数据库部分面试题
  • 原文地址:https://www.cnblogs.com/fqfzs/p/9852259.html
Copyright © 2020-2023  润新知