zoukankan      html  css  js  c++  java
  • poj 1079 Calendar Game(博弈论 SG)

    Calendar Game

    Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 2519    Accepted Submission(s): 1438


    Problem Description
    Adam and Eve enter this year’s ACM International Collegiate Programming Contest. Last night, they played the Calendar Game, in celebration of this contest. This game consists of the dates from January 1, 1900 to November 4, 2001, the contest day. The game starts by randomly choosing a date from this interval. Then, the players, Adam and Eve, make moves in their turn with Adam moving first: Adam, Eve, Adam, Eve, etc. There is only one rule for moves and it is simple: from a current date, a player in his/her turn can move either to the next calendar date or the same day of the next month. When the next month does not have the same day, the player moves only to the next calendar date. For example, from December 19, 1924, you can move either to December 20, 1924, the next calendar date, or January 19, 1925, the same day of the next month. From January 31 2001, however, you can move only to February 1, 2001, because February 31, 2001 is invalid. 

    A player wins the game when he/she exactly reaches the date of November 4, 2001. If a player moves to a date after November 4, 2001, he/she looses the game. 

    Write a program that decides whether, given an initial date, Adam, the first mover, has a winning strategy. 

    For this game, you need to identify leap years, where February has 29 days. In the Gregorian calendar, leap years occur in years exactly divisible by four. So, 1993, 1994, and 1995 are not leap years, while 1992 and 1996 are leap years. Additionally, the years ending with 00 are leap years only if they are divisible by 400. So, 1700, 1800, 1900, 2100, and 2200 are not leap years, while 1600, 2000, and 2400 are leap years.
     

    Input
    The input consists of T test cases. The number of test cases (T) is given in the first line of the input. Each test case is written in a line and corresponds to an initial date. The three integers in a line, YYYY MM DD, represent the date of the DD-th day of MM-th month in the year of YYYY. Remember that initial dates are randomly chosen from the interval between January 1, 1900 and November 4, 2001. 
     

    Output
    Print exactly one line for each test case. The line should contain the answer "YES" or "NO" to the question of whether Adam has a winning strategy against Eve. Since we have T test cases, your program should output totally T lines of "YES" or "NO". 
     

    Sample Input
    3 2001 11 3 2001 11 2 2001 10 3
     

    Sample Output
    YES NO NO
     
    #include <iostream>
    #include <cstdio>
    using namespace std;
    
    int PN[2010][20][50] , year = 2001 , month = 11 , day = 4;
    int mp[13] = {0 , 31 , 30 , 31 , 30 , 31 , 30 , 31 , 31 , 30 , 31 , 30 , 31};
    
    void sub_day(){
        if(day == 0){
            month--;
            if(month == 0){
                month = 12;
                day = 31;
                year--;
            }else{
                if(month == 2){
                    if(year%4==0&&year%100!=0||year%400==0) day = 29;
                    else day = 28;
                }else{
                    day = mp[month];
                }
            }
        }
    }
    
    bool add_month(int &Y , int &M , int &D){
        if(M > 12){
            Y++;
            M = 1;
            return true;
        }else{
            if(M == 2){
                if(Y%4==0&&Y%100!=0||Y%400==0){
                    if(D > 29) return false;
                    return true;
                }else{
                    if(D > 28) return false;
                    return true;
                }
            }else{
                if(mp[M] < D) return false;
                return true;
            }
        }
    }
    
    int SG(){
        int Y = year , M = month+1 , D = day;
        if(add_month(Y , M , D)){
            if(PN[Y][M][D] == 1) return 0;
        }
        return 1;
    }
    
    void initial(){
        PN[year][month][day] = 1;
        int ty = year , tm = month , td = day;
        day--;
        while(year >= 1900){
            if(PN[ty][tm][td] == 1) PN[year][month][day] = 0;
            else PN[year][month][day] = SG();
            ty = year , tm = month , td = day;
            day--;
            sub_day();
        }
    }
    
    int main(){
        initial();
        int YYYY ,MM, DD ,T;
        scanf("%d" , &T);
        while(T--){
            scanf("%d%d%d" , &YYYY ,&MM, &DD);
            if(PN[YYYY][MM][DD]) printf("NO
    ");
            else printf("YES
    ");
        }
        return 0;
    }
    


  • 相关阅读:
    Linux_vi编辑器
    Linux_几个符号命令
    Linux_权限
    Linux_用户/用户组
    Linux_文件及文件夹[创建][复制][移动][删除][重命名]
    Linux_文件查看
    Linux_初识
    码农网站
    学习网站
    软件设计师考试范围
  • 原文地址:https://www.cnblogs.com/gavanwanggw/p/6772876.html
Copyright © 2011-2022 走看看