zoukankan      html  css  js  c++  java
  • hdu 1851(A Simple Game)(sg博弈)

    A Simple Game

    Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/65535 K (Java/Others)
    Total Submission(s): 1487    Accepted Submission(s): 939


    Problem Description
    Agrael likes play a simple game with his friend Animal during the classes. In this Game there are n piles of stones numbered from 1 to n, the 1st pile has M1 stones, the 2nd pile has M2 stones, ... and the n-th pile contain Mn stones. Agrael and Animal take turns to move and in each move each of the players can take at most L1stones from the 1st pile or take at most L2 stones from the 2nd pile or ... or take Ln stones from the n-th pile. The player who takes the last stone wins.

    After Agrael and Animal have played the game for months, the teacher finally got angry and decided to punish them. But when he knows the rule of the game, he is so interested in this game that he asks Agrael to play the game with him and if Agrael wins, he won't be punished, can Agrael win the game if the teacher and Agrael both take the best move in their turn?

    The teacher always moves first(-_-), and in each turn a player must takes at least 1 stones and they can't take stones from more than one piles.
     
    Input
    The first line contains the number of test cases. Each test cases begin with the number n (n ≤ 10), represent there are n piles. Then there are n lines follows, the i-th line contains two numbers Mi and Li (20 ≥ Mi > 0, 20 ≥ Li > 0). 
     
    Output
    Your program output one line per case, if Agrael can win the game print "Yes", else print "No". 
     
    Sample Input
    2 1 5 4 2 1 1 2 2
     
    Sample Output
    Yes No
     
    Author
    Agreal@TJU
     
    Source
     
    Recommend
    lcy   |   We have carefully selected several similar problems for you:  1852 1854 1858 1730 1857 
     
    简单的SG函数题,结果为每个子游戏的sg值的异或,每个子游戏都是简单的巴什博弈
     1 #include<stdio.h>
     2 int main()
     3 {
     4     int t,n,m,l;
     5     scanf("%d",&t);
     6     while(t--)
     7     {
     8         scanf("%d",&n);
     9         int sg=0;
    10         for(int i=0;i<n;i++){
    11             scanf("%d%d",&m,&l);
    12             sg ^= m%(l+1);
    13         }
    14         if(sg)
    15             puts("No");
    16         else
    17             puts("Yes");
    18     }
    19     return 0;
    20 }
    View Code
     
  • 相关阅读:
    【2020省选Day1T1】LOJ3299 「联合省选 2020 A | B」冰火战士
    题解 CF1369 D,E,F Codeforces Round #652 (Div. 2)
    题解 LOJ3298 「BJOI2020」封印(SAM,数据结构)
    题解 nflsoj99 牛顿的烈焰激光剑(容斥,DP,数学)
    判断长度为3的等差数列(经典问题)
    树形图求和:一道经典矩阵知识题
    题解 LOJ2390 「JOISC 2017 Day 1」开荒者
    istio sidecar自动注入过程分析
    filebeat-kafka日志收集
    istio路由配置
  • 原文地址:https://www.cnblogs.com/GO-NO-1/p/6363097.html
Copyright © 2011-2022 走看看