首页 > 代码库 > hdu 5011

hdu 5011

E - Game
Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u
Submit Status Practice HDU 5011
Appoint description: 

Description

Here is a game for two players. The rule of the game is described below: 

● In the beginning of the game, there are a lot of piles of beads. 

● Players take turns to play. Each turn, player choose a pile i and remove some (at least one) beads from it. Then he could do nothing or split pile i into two piles with a beads and b beads.(a,b > 0 and a + b equals to the number of beads of pile i after removing) 

● If after a player‘s turn, there is no beads left, the player is the winner. 

Suppose that the two players are all very clever and they will use optimal game strategies. Your job is to tell whether the player who plays first can win the game.
 

Input

There are multiple test cases. Please process till EOF. 

For each test case, the first line contains a postive integer n(n < 10 5) means there are n piles of beads. The next line contains n postive integer, the i-th postive integer a i(a i < 2 31) means there are a i beads in the i-th pile.
 

Output

For each test case, if the first player can win the game, ouput "Win" and if he can‘t, ouput "Lose"
 

Sample Input

1121 131 2 3
 

Sample Output

WinLoseLose
 NIM 博弈
#include<iostream>#include<cstdio>#include<cstring>#include<string>#include<cmath>#include<cstdlib>#include<algorithm>#include<queue>#include<vector>#include<set>using namespace std;int n;int main(){      while(scanf("%d",&n)!=EOF)      {            int t,sum;            sum=0;            while(n--)            {                scanf("%d",&t);                sum=sum^t;              }            if(sum) printf("Win\n");            else printf("Lose\n");      }      return 0;}

  

hdu 5011