Lightoj 1020 - A Childhood Game

Allice先拿,最后拿球的输。

Bob先拿,最后拿球的赢。

考虑Alice先拿球,当n=1时 Alice输  记dp[1]=0;

n=2,  dp[2]=1

n=3,  dp[3]=1

因为n=1,2的时候先手是A,所以A可以通过选一个还是两个球使得B在n=2,3时输。

n=4,  dp[4]=0

因为n=2,3时B可能是先手,所以B可以通过选一个还是两个球使得A在n=4的时候输。

n=5,dp[5]=1;

n=6,dp[6]=1;

因为n=4,5的时候先手是A,所以A可以通过选一个还是两个球使得B在n=5,6时输。

.......

dp[4]=dp[1]所以就可以看到规律了。。

同理 Bob也用类似的想法。

/* ***********************************************
Author        :guanjun
Created Time  :2016/6/24 22:49:21
File Name     :1020.cpp
************************************************ */
#include <iostream>
#include <cstring>
#include <cstdlib>
#include <stdio.h>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <math.h>
#include <stdlib.h>
#include <iomanip>
#include <list>
#include <deque>
#include <stack>
#define ull unsigned long long
#define ll long long
#define mod 90001
#define INF 0x3f3f3f3f
#define maxn 10010
#define cle(a) memset(a,0,sizeof(a))
const ull inf = 1LL << 61;
const double eps=1e-5;
using namespace std;
priority_queue<int,vector<int>,greater<int> >pq;
struct Node{
	int x,y;
};
struct cmp{
    bool operator()(Node a,Node b){
        if(a.x==b.x) return a.y> b.y;
        return a.x>b.x;
	}
};

bool cmp(int a,int b){
    return a>b;
}
int main()
{
    #ifndef ONLINE_JUDGE
    freopen("in.txt","r",stdin);
    #endif
    //freopen("out.txt","w",stdout);
    int T,n;
	cin>>T;
	string s1,s2;
	for(int t=1;t<=T;t++){
		cin>>n>>s1;
		printf("Case %d: ",t);
		if(s1=="Alice"){
			if(n%3==1)puts("Bob");
			else puts("Alice");
		}
		else{
			if(n%3==0)puts("Alice");
			else puts("Bob");
		}
	}
    return 0;
}

  

时间: 2025-01-02 15:12:51

Lightoj 1020 - A Childhood Game的相关文章

Lightoj 1020 - A Childhood Game (博弈)

题目链接: 1020 - A Childhood Game 题目描述: Alice和Bob在玩弹珠游戏,两人轮流拿走弹珠,每次只能拿走一个或者两个,当Alice作为先手时谁拿走最后一个就是输家,而Bob作为先手时谁拿走最后一个就是赢家,问最后谁是赢家? 解题思路: 很基础的博弈题目,我们可以知道当Alice作为先手的时候:n=1(Alice lose), n=1(Alice win), n=2(Alice win), n=4(Alice lose), n=5(Alice win). 从上面可以看

LightOj 1020 博弈

思路介绍: 1. 如果首先由Alice取,定义ans[i],如果ans[i]=1表示Alice会取胜,反之Bob取胜.枚举前100项,ans[1]=0,ans[2]=1,ans[i]=!(ans[i-1]&&ans[i-2]); 可以发现规律:当i为2,3,5,6,8,9....时Alice取胜,所以Alice取胜的条件为:i%3!=1: 2.如果Bob先取,ans[1]=1,ans[2]=1,ans[i]=!(ans[i-1]&&ans[i-2]) 规律:当i为1,2,4

LightOJ - 1020 Childhood Game (博弈)

A Childhood Game Time Limit: 500MS   Memory Limit: 32768KB   64bit IO Format: %lld & %llu Submit Status Description Alice and Bob are playing a game with marbles; you may have played this game in childhood. The game is playing by alternating turns. I

Light OJ 1020 - A Childhood Game

Alice and Bob are playing a game with marbles; you may have played this game in childhood. The game is playing by alternating turns. In each turn a player can take exactly one or two marbles. Both Alice and Bob know the number of marbles initially. N

lightoj Basic Math 数论基础

这里是除去Beginners Problems后的部分 1020 - A Childhood Game 巴什博奕(Bash Game) #include<bits/stdc++.h> using namespace std; int main(void) { int t,Case=0; int n; char s[10]; scanf("%d",&t); while(t--) { scanf("%d%s",&n,&s); prin

light oj Basic Math 数论基础

这里是除去Beginners Problems后的部分 1020 - A Childhood Game 巴什博奕(Bash Game) #include<bits/stdc++.h> using namespace std; int main(void) { int t,Case=0; int n; char s[10]; scanf("%d",&t); while(t--) { scanf("%d%s",&n,&s); prin

LightOJ 1030 Discovering Gold【概率】

题目链接:http://www.lightoj.com/volume_showproblem.php?problem=1030 题意:基础概率题. 代码: #include <stdio.h> #include <string.h> #include <vector> #include <string> #include <algorithm> #include <iostream> #include <iterator>

LightOJ - 1370 Bi-shoe and Phi-shoe

题目链接:http://lightoj.com/login_main.php?url=volume_showproblem.php?problem=1370 题目大意:给N个数a[i], N <= 1e6,问使 Φ(x) >= a[i] 成立的最小x的所有x的和是多少. 解题思路:我们知道的是对于素数 m 来说,phi[m] = m - 1.另一方面,对于一个合数 m 来说, phi[m] < phi[x] , x > m && x 是素数. 因此,我们可以认为,每

lightoj 1057 - Collecting Gold(状压dp)

题目链接:http://www.lightoj.com/volume_showproblem.php?problem=1057 题解:看似有点下记忆话搜索但是由于他是能走8个方向的也就是说两点的距离其实就是最大的x轴或y轴的差.然后只有15个藏金点状压一下加dfs就行了. #include <iostream> #include <cstring> #include <cstdio> #include <cmath> #define inf 0X3f3f3f