HDU 5795 A Simple Nim(简单Nim)

HDU 5795 A Simple Nim简单Nim

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)

 

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.

两个玩家轮流从n堆糖中挑若干糖果,选到最后一颗糖的人赢得游戏。他们每回合他们可以在同一堆糖上取任意数量的糖果(不能不拿)。为了让游戏更有意思,玩家可以选择把某堆糖一分为三(没有空堆)而不去取糖果。在两人皆不犯错的情况下,找出游戏的赢家。
CN

 

Input - 输入

Intput contains multiple test cases. The first line is an integer 1≤T≤100, 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)

多组测试用例。第一行是一个整数1≤T≤100,表示测试用例的数量。每组测试用例以一个整数n打头,表示糖果的堆数,随有N个整数s[0],s[1],....,s[n−1], 分别表示各堆糖果的数量。(1≤n≤10^6,1≤s[i]≤10^9)
CN

 

Output - 输出

For each test case,output a line whick contains either"First player wins."or"Second player wins".

对于每个测试用例,输出一行"First player wins.""Second player wins"
CN

 

Sample Input - 输入样例

2
2
4 4
3
1 2 4

 

Sample Output - 输出样例

Second player wins.
First player wins.

 

题解

  暴力出奇迹,搜索是真知,打表找规律,反正SG……

 

代码 C++

 1 #include <cstdio>
 2 #include <cstring>
 3 #define mx 100
 4 int sg[mx], w[mx << 2];
 5 void rdy(){
 6     int  i1, i2, i3, i, j;
 7     memset(sg, 0, sizeof(sg));
 8     for (i = 1; i < mx; ++i){
 9         memset(w, 0, sizeof(w));
10         for (j = 0; j < i; ++j) w[sg[j]] = 1;
11         if (i >= 3){
12             for (i1 = 1; i1 * 3 <= i; ++i1){
13                 for (i2 = i1; i1 + i2 * 2 <= i; ++i2){
14                     i3 = i - i1 - i2;
15                     if (i3 >= i2) w[sg[i1] ^ sg[i2] ^ sg[i3]] = 1;
16                 }
17             }
18         }
19         for (j = 0; w[j]; ++j);
20         sg[i] = j;
21     }
22 }
23 int main(){
24     rdy();
25     int n, i;
26     for (i = 0; i < mx; ++i){
27         if (sg[i] != i) printf("i=%d sg=%d\n", i, sg[i]);
28     }
29     return 0;
30 }
打表围观

 

 1 #include <cstdio>
 2 int sg(int i){
 3     if (i % 8 == 0 || (i + 1) % 8 == 0){
 4         if (i & 1) ++i;
 5         else --i;
 6     }
 7     return i;
 8 }
 9 int main(){
10     int t, n, s, opt;
11     scanf("%d", &t);
12     while (t--){
13         scanf("%d", &n); opt = 0;
14         for (opt = 0; n--; opt ^= sg(s)) scanf("%d", &s);
15         if (opt) puts("First player wins.");
16         else puts("Second player wins.");
17     }
18     return 0;
19 }


 

 

 

 

 

转载于:https://www.cnblogs.com/Simon-X/p/5950697.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值