uva 1378 - A Funny Stone Game sg函数

简介:

    07年论文的第一个例题,看了2天都没看懂,那句把每一颗石子看作是一堆石子,如果它是第p堆中的石子,把么它所代表的这堆石子的个数为n-1-p,晚上看电影突然想明白了,意思是如果第p堆一开始为t,那么就可以看做t个数目为n-1-p的石子。一切问题迎刃而解

    写了个O(n^3)的算法,但感觉不用枚举,还能有优化


/*
author:jxy
lang:C/C++
university:China,Xidian University
**If you need to reprint,please indicate the source**
*/
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
using namespace std;
int n;
int sg[25];
int org[25];
void init()
{
    int vis[100],i,j,k;//vis开大点 防溢出
    sg[0]=0;
    for(i=1;i<23;i++)
    {
        memset(vis,0,sizeof(vis));
        for(j=0;j<i;j++)
          for(k=j;k<i;k++)
          {
             vis[sg[j]^sg[k]]=1;
          }
        for(j=0;vis[j];j++);
        sg[i]=j;
    }
}
int main()
{
   int C=0;
   init();
   while(~scanf("%d",&n)&&n)
   {
       int t,i,j,k,ans=0;
       for(i=0;i<n;i++)
       {
          scanf("%d",&t);
          org[i]=t;
          if(t&1)
            ans^=sg[n-i-1];
       }
       bool ok=1;
       printf("Game %d: ",++C);
       for(i=0;ok&&i<n;i++)
        if(org[i])
          for(j=i+1;ok&&j<n;j++)
             for(k=j;ok&&k<n;k++)
                if((ans^sg[n-i-1]^sg[n-j-1]^sg[n-k-1])==0)
                {
                    printf("%d %d %d\n",i,j,k);
                    ok=0;
                }
        if(ok)puts("-1 -1 -1");
   }
}


目录
相关文章
|
8月前
UVa11565 - Simple Equations
UVa11565 - Simple Equations
35 0
|
8月前
UVa389 - Basically Speaking
UVa389 - Basically Speaking
24 0
|
存储 算法
LeetCode 289. Game of Life
如果活细胞周围八个位置的活细胞数少于两个,则该位置活细胞死亡; 如果活细胞周围八个位置有两个或三个活细胞,则该位置活细胞仍然存活; 如果活细胞周围八个位置有超过三个活细胞,则该位置活细胞死亡; 如果死细胞周围正好有三个活细胞,则该位置死细胞复活;
48 0
LeetCode 289. Game of Life
AtCoder Beginner Contest 176 D - Wizard in Maze(01BFS)
AtCoder Beginner Contest 176 D - Wizard in Maze(01BFS)
89 0
|
机器学习/深度学习
AtCoder Beginner Contest 218 C - Shapes (模拟)
AtCoder Beginner Contest 218 C - Shapes (模拟)
104 0
|
Java
HDU 5882 Balanced Game
Balanced Game Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 508    Accepted Submission(s): ...
816 0
[LeetCode] Game of Life
A solution using additional spaces to solve a copy of the original board is easy. To get an in-place solution, we need to record the information of state transitions directly in the board.
703 0