码迷,mamicode.com
首页 > 其他好文 > 详细

ZOJ 3057 Beans Game 博弈论 sg函数

时间:2017-12-19 01:42:52      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:col   ring   范围   string   closed   pos   isp   gif   view   

http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3057

典型的sg函数,数据范围卡得真好啊

技术分享图片

代码

技术分享图片
 1 #include<cstdio>
 2 #include<cstring>
 3 #include<algorithm>
 4 #include<cmath>
 5 #include<iostream>
 6 #include<map>
 7 using namespace std;
 8 int m,n,k;
 9 bool a[310][310][310]={};
10 int main(){
11     for(int i=0;i<=301;i++){
12         for(int j=0;j<=301;j++){
13             for(int w=0;w<=301;w++){
14                 if(!a[i][j][w]){
15                     for(int t=i+1;t<=301;t++)a[t][j][w]=1;
16                     for(int t=j+1;t<=301;t++)a[i][t][w]=1;
17                     for(int t=w+1;t<=301;t++)a[i][j][t]=1;
18                     
19                     for(int t=1;t+i<=301&&t+j<=301;t++)a[i+t][j+t][w]=1;
20                     for(int t=1;t+j<=301&&t+w<=301;t++)a[i][j+t][w+t]=1;
21                     for(int t=1;t+i<=301&&t+w<=301;t++)a[i+t][j][w+t]=1;
22                 }
23             }
24         }
25     }
26     while(~scanf("%d%d%d",&m,&n,&k)){
27         printf("%d\n",a[m][n][k]);
28     }
29     return 0;
30 }
View Code

 

ZOJ 3057 Beans Game 博弈论 sg函数

标签:col   ring   范围   string   closed   pos   isp   gif   view   

原文地址:http://www.cnblogs.com/137shoebills/p/8059081.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!