ACdream 1112 Alice and Bob(素筛+博弈SG函数)
Time Limit:3000MS Memory Limit:128000KB 64bit IO Format:%lld & %llu
Description
Here is Alice and Bob again !
Alice and Bob are playing a game. There are several numbers.
First, Alice choose a number n.
Then he can replace n (n > 1) with one of its positive factor but not itself or he can replace n with a and b. Here a*b = n and a > 1 and b > 1.
For example, Alice can replace 6 with 2 or 3 or (2, 3).
But he can't replace 6 with 6 or (1, 6). But you can replace 6 with 1.
After Alice's turn, it’s Bob's turn. Alice and Bob take turns to do so. Who can’t do any replace lose the game.
Alice and Bob are both clever enough. Who is the winner?
Input
This problem contains multiple test cases. The first line contains one number n(1 ≤ n ≤ 100000).
The second line contains n numbers.
All the numbers are positive and less than of equal to 5000000.
Output
For each test case, if Alice can win, output “Alice”, otherwise output “Bob”.
Sample Input
2
2 2
3
2 2 4
Sample Output
Bob
Alice
题意:给定n堆石子,每次可以按照规则将该堆石子的个数分为两堆或者将该堆石子的个数减少,
谁不能继续操作了谁就输。
题解:规则如下,若n=a*b且a>1,b>1,可以将石子分为a,b两堆;或者可以减少为a或b。
比如n=6,可以分为(2,3),2,3这三种情况,但是不能分为(1,6),1,6这三种情况。
和HDU3032是一个问题,就是一个取石子问题,这里的8=2*2*2就是那道题里的3,这里的
6=2*3就是那道题里的2。如果对这道题理解感到困难可以先阅读我的上上篇博客:
http://www.cnblogs.com/Ritchie/p/5627242.html
也就是说这道题是对每个数的素因子个数进行操作,即素数可以看做是一个1。
设一个数x=a1^r1*a2^r2*...*an^rn;设sum = r1+r2+...+rn.
然后所有的情况就可以表示为:
(1,sum-1),(2,sum-2),...(sum/2,sum-sum/2)或者(1),(2),...(n-1)
然后在计算sum的时候我们可以这样计算。
设一个数为x,他的最小的素因子为y.则sum[x] = sum[x/y] + 1;
所以我们在素筛打表的时候要记录每个数的最小素因子以用于上述公式。
#include <iostream>
#include <cstring>
#include <cstdio>
using namespace std;
#define maxn 5000050
int prime[maxn],cnt=;
bool isprime[maxn];
int m[maxn];
int a[maxn];
int sg[];
void getprime()
{
memset(isprime,,sizeof(isprime));
memset(m,,sizeof(m));
memset(a,,sizeof(a));
for(int i=; i<=maxn; i++)
{
if(!isprime[i])
{
prime[cnt++]=i;
for(int j=i+i; j<=maxn; j+=i)
{
isprime[j]=;
if(!m[j]) m[j]=i;
}
m[i]=i;
}
}
for(int i=; i<=maxn; i++)
a[i]=a[i/m[i]]+;
}
void getsg()
{
memset(sg,,sizeof(sg));
sg[]=;
sg[]=;
bool vis[]; //放到循环里定义也一样需要每次都初始化
for(int i=; i<=; i++)
{
memset(vis,,sizeof(vis)); //注意每次都要初始化
for(int j=; j<i; j++) //取石子
vis[sg[j]]=;
for(int j=; j<i; j++) //拆分
vis[sg[j]^sg[i-j]]=;
for(int x=;; x++)
if(!vis[x])
{
sg[i]=x;
break;
}
}
}
void get()
{
getsg();
getprime();
}
void solve()
{
int n;
while(scanf("%d",&n)!=EOF)
{
int data,ans=;
for(int i=; i<n; i++)
{
scanf("%d",&data);
ans^=sg[a[data]];
}
if(ans)
printf("Alice\n");
else
printf("Bob\n");
}
}
int main()
{
get();
solve();
}
ACdream 1112 Alice and Bob(素筛+博弈SG函数)的更多相关文章
- ACdream 1112 Alice and Bob (sg函数的变形+素数筛)
题意:有N个数,Alice 和 Bob 轮流对这些数进行操作,若一个数 n=a*b且a>1,b>1,可以将该数变成 a 和 b 两个数: 或者可以减少为a或b,Alice先,问谁能赢 思路 ...
- Alice and Bob HDU - 4111 (SG函数)
Alice and Bob are very smart guys and they like to play all kinds of games in their spare time. The ...
- ACdream 1112 Alice and Bob (博弈&&素数筛选优化)
题目链接:传送门 游戏规则: 没次能够将一堆分成两堆 x = a*b (a!=1&&b!=1)x为原来堆的个数,a,b为新堆的个数. 也能够将原来的堆的个数变成原来堆的约数y.y!=x ...
- S-Nim HDU 1536 博弈 sg函数
S-Nim HDU 1536 博弈 sg函数 题意 首先输入K,表示一个集合的大小,之后输入集合,表示对于这对石子只能去这个集合中的元素的个数,之后输入 一个m表示接下来对于这个集合要进行m次询问,之 ...
- hdu 4111 Alice and Bob(中档博弈题)
copy VS study 1.每堆部是1的时候,是3的倍数时输否则赢: 2.只有一堆2其他全是1的时候,1的堆数是3的倍数时输否则赢: 3.其他情况下,计算出总和+堆数-1,若为偶数,且1的堆数是偶 ...
- hdu 3032(博弈sg函数)
题意:与原来基本的尼姆博弈不同的是,可以将一堆石子分成两堆石子也算一步操作,其它的都是一样的. 分析:由于石子的堆数和每一堆石子的数量都很大,所以肯定不能用搜索去求sg函数,现在我们只能通过找规律的办 ...
- Light OJ 1199 - Partitioning Game (博弈sg函数)
D - Partitioning Game Time Limit:4000MS Memory Limit:32768KB 64bit IO Format:%lld & %llu ...
- LightOJ 1315 - Game of Hyper Knights(博弈sg函数)
G - Game of Hyper Knights Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%lld & ...
- Light OJ 1296 - Again Stone Game (博弈sg函数递推)
F - Again Stone Game Time Limit:2000MS Memory Limit:32768KB 64bit IO Format:%lld & %llu ...
随机推荐
- 【bzoj4010】 HNOI2015—菜肴制作
http://www.lydsy.com/JudgeOnline/problem.php?id=4010 (题目链接) 题意 给出一张无向图要求出一个拓扑序列满足1的位置最靠前 ,在保证上面的条件下使 ...
- codeforces 719A:Vitya in the Countryside
Description Every summer Vitya comes to visit his grandmother in the countryside. This summer, he go ...
- h5页面,改变数字默认颜色
最近遇到一个非常变态的bug,有一串数字,我设置color为白色,在pc端浏览器,无变化,但是到了手机端,会由白色跳成黑色,我无解啊... 刚刚找到方法,如下: <meta name=" ...
- SOAP 格式设置选项
SOAP 格式设置选项 两个格式设置选项为: Style:适用于 SOAP 消息中 Body 元素的子元素(也可能是孙级).此选项指定为 binding WSDL 元素(通常情况下)或 operati ...
- 使用Jquery+EasyUI 进行框架项目开发案例讲解之四 组织机构管理源码分享
http://www.cnblogs.com/huyong/p/3404647.html 在上三篇文章 <使用Jquery+EasyUI进行框架项目开发案例讲解之一---员工管理源码分享> ...
- List<T> 序列化与反序列化
[Serializable] public class OrderHead { public String OrderId { get; set; } public String OrderName ...
- Java创建目录 mkdir与mkdirs的区别
两者的参数都是路径串,但: mkdir只能创建父目录存在的目录,而mkdirs不论要创建目录的父目录是否存在都能创建成功. 例如:假设目录c:/uses/zsm/desktop/dir1不存在,,现在 ...
- 使用Tengine替代Nginx作为负载均衡服务器
Tengine是由淘宝网发起的Web服务器项目.它在Nginx的基础上,针对大访问量网站的需求,添加了很多高级功能和特性.Tengine的性能和稳定性已经在大型的网站如淘宝网,天猫商城等得到了很好的检 ...
- The Joys of Conjugate Priors
The Joys of Conjugate Priors (Warning: this post is a bit technical.) Suppose you are a Bayesian rea ...
- Clion = C/C++ 和 Python 共享的 IDE
Clion + Tdmgcc + Winpython(Python)