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 ...
随机推荐
- poj 2155 Matrix---树状数组套树状数组
二维树状数组模版,唯一困难,看题!!(其实是我英语渣) Matrix Time Limit: 3000MS Memory Limit: 65536K Total Submissions: 22098 ...
- 【poj1010】 STAMPS
http://poj.org/problem?id=1010 (题目链接) 感到了英语深深的恶意... 题意(真的很难懂....) 第一行数字是邮票的面值,每一个数字就是一个不同的种类,哪怕面值相同. ...
- iOS开源项目汇总
扫描wifi信息: http://code.google.com/p/uwecaugmentedrealityproject/ http://code.google.com/p/iphone-wire ...
- 检测ADO.net拼接字符串中非法字符
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Refle ...
- Conjugate prior relationships
Conjugate prior relationships The following diagram summarizes conjugate prior relationships for a n ...
- PRML Chapter 2. Probability Distributions
PRML Chapter 2. Probability Distributions P68 conjugate priors In Bayesian probability theory, if th ...
- win10系统安装.net35的命令行方式
有些程序在windows系统中需要安装.net35才能运行,下载太慢了,可以直接在docs窗口直接安装,命令行如下:Dism /online /enable-feature /featurename: ...
- Jenkins 搭建U3D自动发布 IOS
http://www.cnblogs.com/yinghuochong/archive/2013/09/01/3294940.html 1.安装包,工具略过. 2.插件管理 Subversion Pl ...
- 理解模板引擎Razor 的原理(转载)
Razor是ASP.NET MVC 3中新加入的技术,以作为ASPX引擎的一个新的替代项.简洁的语法与.NET Framework 结合,广泛应用于ASP.NET MVC 项目.Razor Pad是一 ...
- thinkphp 3.23 第三方登录sdk集成包
本集成包在官方包上扩展了支付宝登录和微信,支持最新的3.23版本 config /* URL配置 */ 'URL_CASE_INSENSITIVE' => true, //默认fa ...