山东省第八届省赛A题 Return of the Nim

来源:互联网 发布:fifaaol3数据库 编辑:程序博客网 时间:2024/06/05 15:23

Problem Description

Sherlock and Watson are playing the following modified version of Nim game:

  • There are n piles of stones denoted as ,,...,, and n is a prime number;
  • Sherlock always plays first, and Watson and he move in alternating turns. During each turn, the current player must perform either of the following two kinds of moves:
    1. Choose one pile and remove k(k >0) stones from it;
    2. Remove k stones from all piles, where 1≤kthe size of the smallest pile. This move becomes unavailable if any pile is empty.
  • Each player moves optimally, meaning they will not make a move that causes them to lose if there are still any better or winning moves.

Giving the initial situation of each game, you are required to figure out who will be the winner

Input

The first contains an integer, g, denoting the number of games. The 2×g subsequent lines describe each game over two lines:
1. The first line contains a prime integer, n, denoting the number of piles.
2. The second line contains n space-separated integers describing the respective values of,,...,.

  • 1≤g≤15
  • 2≤n≤30, where n is a prime.
  • 1≤pilesi where 0≤in−1

Output

For each game, print the name of the winner on a new line (i.e., either "Sherlock" or "Watson")

Example Input

232 3 222 1

Example Output

SherlockWatson


nim博弈和威佐夫博弈 n=2时用威佐夫博弈 剩余情况用nim博弈


#include<iostream>#include<cstdio>#include<cstring>#include<cmath>using namespace std;int a[123];int main(){    int t;    scanf("%d",&t);    while(t--)    {        int n;        scanf("%d",&n);        int flag=0;        if(n==2)        {            int a,b;            scanf("%d%d",&a,&b);            if(a>b) swap(a,b);            double e=(sqrt(5.0)+1.0)/(2.0);            int k=b-a;            int kk=(int)(k*e);            if(kk==a) flag=1;        }        else        {            int i;            int sum=0;            for(i=0; i<=n-1; i++)            {                scanf("%d",&a[i]);                sum^=a[i];            }            if(sum==0) flag=1;        }        if(flag) printf("Watson\n");        else printf("Sherlock\n");    }    return 0;}



0 0
原创粉丝点击