• hdu 5795


    A Simple Nim

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
    Total Submission(s): 948    Accepted Submission(s): 559


    Problem Description
    Two players take turns picking candies from n heaps,the player who picks the last one will win the game.On each turn they can pick any number of candies which come from the same heap(picking no candy is not allowed).To make the game more interesting,players can separate one heap into three smaller heaps(no empty heaps)instead of the picking operation.Please find out which player will win the game if each of them never make mistakes.
     
    Input
    Intput contains multiple test cases. The first line is an integer 1T100, the number of test cases. Each case begins with an integer n, indicating the number of the heaps, the next line contains N integers s[0],s[1],....,s[n1], representing heaps with s[0],s[1],...,s[n1] objects respectively.(1n106,1s[i]109)
     
    Output
    For each test case,output a line whick contains either"First player wins."or"Second player wins".
     
    Sample Input
    2 2 4 4 3 1 2 4
     
    Sample Output
    Second player wins. First player wins.
     
    Author
    UESTC
     
    Source
     最近学长讲博弈论  给我们讲了些题目 包括这道题 
    主要是求sg函数,打表1-40就可以看出规律,(带码学别人的)
    x%8==7 sg()=x+1;
    x%8==0 sg()=x-1;
    其他  sg()=x
     1 #include<iostream>
     2 #include<cstdio>
     3 #include<cmath>
     4 #include<cstring>
     5 using namespace std;
     6 int visited[100];
     7 int sg[100];
     8 int main(){
     9     /*int i,j,k;
    10     for(i=1;i<40;i++){
    11         memset(visited,0,sizeof(visited));
    12         for(j=0;j<i;j++)visited[sg[j]]=1;
    13         for(j=1;j<i;j++){
    14             for(k=1;k+j<i;k++){
    15                 visited[sg[j]^sg[k]^sg[i-k-j]]=1;
    16             }
    17         }
    18         for(j=0;j<40;j++){
    19             if(visited[j]==0){
    20                 break;
    21             }
    22         }
    23         sg[i]=j;
    24     }
    25     for(i=1;i<40;i++){
    26         cout<<i<<" "<<sg[i]<<endl;
    27     }*/
    28     int t;
    29     scanf("%d",&t);
    30     int n,i,x;
    31     int ans;
    32     while(t--){
    33         scanf("%d",&n);
    34         ans=0;
    35         for(i=0;i<n;i++){
    36             scanf("%d",&x);
    37             if(x%8==0){
    38                 x=x-1;
    39                 ans=ans^x;
    40             }
    41             else if(x%8==7){
    42                 x=x+1;
    43                 ans=ans^x;
    44             }
    45             else
    46                 ans=ans^x;
    47 
    48         }
    49         cout<<ans<<endl;
    50     }
    51 }
  • 相关阅读:
    css技巧---电子表体字体引入
    解决for循环,暂停3s,在执行下次循环
    node 将汉字转化为拼音
    针对CMS中的tag标签理解
    博客园上传markdown文件方法
    正则表达式匹配非某字符串的情况
    ubuntu 20.04 MySQL的workbench无法连接
    在ubuntu20.04上使用Navicat客户端
    如何提升git clone的速度
    jenkins出现故障,报错HTTP ERROR 403 No valid crumb was included in the request
  • 原文地址:https://www.cnblogs.com/Aa1039510121/p/6012769.html
Copyright © 2020-2023  润新知