ifrog-1028 Bob and Alice are playing numbers(trie树)
题目链接:
Bob and Alice are playing numbers
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <bits/stdc++.h>
#include <stack>
#include <map> using namespace std; #define For(i,j,n) for(int i=j;i<=n;i++)
#define mst(ss,b) memset(ss,b,sizeof(ss)); typedef long long LL; template<class T> void read(T&num) {
char CH; bool F=false;
for(CH=getchar();CH<'0'||CH>'9';F= CH=='-',CH=getchar());
for(num=0;CH>='0'&&CH<='9';num=num*10+CH-'0',CH=getchar());
F && (num=-num);
}
int stk[70], tp;
template<class T> inline void print(T p) {
if(!p) { puts("0"); return; }
while(p) stk[++ tp] = p%10, p/=10;
while(tp) putchar(stk[tp--] + '0');
putchar('\n');
} const int mod=1e9+7;
const double PI=acos(-1.0);
const int inf=1e9;
const int N=(1<<20)+10;
const int maxn=1e5+110;
const double eps=1e-12; int ch[21*maxn][2],sz,val[21*maxn],s[23],dp[21],x[maxn],n;
bool vis[N*2];
void insert(int x)
{
mst(s,0);
int n=0,u=0;
while(x)s[n++]=(x&1),x>>=1;
for(int i=20;i>=0;i--)
{
int c=s[i];
if(!ch[u][c])
{
ch[sz][0]=ch[sz][1]=0;
ch[u][c]=sz++;
}
u=ch[u][c];
val[u]++;
}
}
inline int query_or()
{
memset(vis,false,sizeof(vis));
For(i,1,n)vis[x[i]]=true;
for(int i=(1<<20);i>0;i--)
{
for(int j=0;j<=20;j++)
{
if(!(i&(1<<j)))vis[i]|=vis[i|(1<<j)];
}
}
int ans=0,t[22];
for(int i=1;i<=n;i++)
{
int num=0,temp=0;
for(int j=20;j>=0;j--)
{
if(!(x[i]&(1<<j)))t[num++]=(1<<j);
}
for(int j=0;j<num;j++)
{
if(vis[temp|t[j]])temp|=t[j];
}
ans=max(ans,temp|x[i]);
}
return ans;
}
void same(int &l,int r)
{
if(!r)return ;
if(!l)
{
ch[sz][0]=ch[sz][1]=0;
l=sz++;
}
val[l]+=val[r];
same(ch[l][0],ch[r][0]);
same(ch[l][1],ch[r][1]);
}
inline int query_and()
{
int u=0,ans=0;
for(int i=20;i>=0;i--)
{
if(val[ch[u][1]]>=2)u=ch[u][1],ans|=dp[i];
else same(ch[u][0],ch[u][1]),u=ch[u][0];
}
return ans;
}
inline int query_xor(int x)
{
mst(s,0);
int n=0,u=0,ans=0;
while(x)s[n++]=(x&1),x>>=1;
for(int i=20;i>=0;i--)
{
int c=s[i];
if(ch[u][c^1])ans|=dp[i],u=ch[u][c^1];
else u=ch[u][c];
}
return ans;
}
inline void Init()
{
sz=1;
mst(ch[0],0);
mst(val,0);
for(int i=0;i<=20;i++)
dp[i]=(1<<i);
}
int main()
{
int t,Case=0;
read(t);
while(t--)
{
int op,ans=0;
read(n);read(op);
Init();
read(x[1]);insert(x[1]);
For(i,2,n)
{
read(x[i]);
if(op==2)ans=max(ans,query_xor(x[i]));
if(op<3)insert(x[i]);
}
if(op==1)ans=query_and();
else if(op==3)ans=query_or();
printf("Case #%d: %d\n",++Case,ans);
}
return 0;
}
ifrog-1028 Bob and Alice are playing numbers(trie树)的更多相关文章
- 玲珑学院OJ 1028 - Bob and Alice are playing numbers 字典树,dp
http://www.ifrog.cc/acm/problem/1028 题解处:http://www.ifrog.cc/acm/solution/4 #include <cstdio> ...
- [Lonlife1031]Bob and Alice are eating food(递推,矩阵快速幂)
题目链接:http://www.ifrog.cc/acm/problem/1031 题意:6个水果中挑出n个,使得其中2个水果个数必须是偶数,问有多少种选择方法. 设中0代表偶数,1代表奇数.分别代表 ...
- ACM学习历程—Codeforces 446C DZY Loves Fibonacci Numbers(线段树 && 数论)
Description In mathematical terms, the sequence Fn of Fibonacci numbers is defined by the recurrence ...
- codeforces 446C DZY Loves Fibonacci Numbers 线段树
假如F[1] = a, F[2] = B, F[n] = F[n - 1] + F[n - 2]. 写成矩阵表示形式可以很快发现F[n] = f[n - 1] * b + f[n - 2] * a. ...
- Codeforces446C DZY Loves Fibonacci Numbers(线段树 or 分块?)
第一次看到段更斐波那契数列的,整个人都不会好了.事后看了题解才明白了一些. 首先利用二次剩余的知识,以及一些数列递推式子有下面的 至于怎么解出x^2==5(mod 10^9+9),我就不知道了,但是要 ...
- Bnuoj-29359 Deal with numbers 线段树
题目链接:http://www.bnuoj.com/bnuoj/problem_show.php?pid=29359 题意:一个数列,有三种操作: 1.区间[a,b]之间大于零的数整出c. 2.区间[ ...
- Codeforces 446C DZY Loves Fibonacci Numbers [线段树,数论]
洛谷 Codeforces 思路 这题知道结论就是水题,不知道就是神仙题-- 斐波那契数有这样一个性质:\(f_{n+m}=f_{n+1}f_m+f_{n}f_{m-1}\). 至于怎么证明嘛-- 即 ...
- CF446C DZY Loves Fibonacci Numbers 线段树 + 数学
有两个性质需要知道: $1.$ 对于任意的 $f[i]=f[i-1]+f[i-2]$ 的数列,都有 $f[i]=fib[i-2]\times f[1]+fib[i-1]\times f[2]$ 其中 ...
- Game
Game Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submissi ...
随机推荐
- JavaSE——TCP网络编程(二)
ServerSocket 类与Socket 类的不同用法: ServerSocket类: 创建一个ServerSocket类,同时在运行该语句的计算机的指定端口处建立一个监听服务,如: Serv ...
- html-制作导航菜单
导航菜单nav: 1.使用列表标签<ul> 2.使用浮动布局float 3.使用超链接标签<a>:要使用<a>标签的margin外边距,需要让<a>标签 ...
- ElasticSearch文档-简单介绍
ElasticSearch是一个基于Lucene构建的开源,分布式,RESTful搜索引擎.设计用于云计算中,能够达到实时搜索,稳定,可靠,快速,安装使用方便.支持通过HTTP使用JSON进行数据索引 ...
- Java学习笔记之_JDBC
JDBC简介 1.SUN公司为了简化,统一数据库的操作,定义了一套Java操作数据库的规范,称之为JDBC 2.数据库驱动 3.JDBC全称为:JAVA DataBase Commectivity(j ...
- QT4/5中文乱码问题解决
QT4 : QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8")); QT5: #if defined(_MSC_ ...
- Oracle自动统计信息的收集原理及实验
[日期:2014-11-21]来源:Linux社区 作者:stevendbaguo[字体:大 中 小] 从Oracle Database 10g开始,Oracle在建库后就默认创建了一个名为GATH ...
- VS 2013打开.edmx文件时报类型转换异常
供应商提交了项目代码,但在我的电脑上打开项目编译时一直报Entityframework 的 .edmx文件转换异常,而无法通过编译. 分析后认为可能是entityframework的类库不够新 ...
- vsphere vcenter server下安装ubuntu的vmwaretools
0.参考文献 百度经验:这里面是以redhat桌面版为实例进行介绍的,我的环境是ubuntu-server,虽然不一样,也可以参考 http://jingyan.baidu.com/article/2 ...
- iOS第三方类库JSPatch(热更新)
---------------------------------------------------------------------------------------------------- ...
- NSNumber和NSValue
在进行数据处理的时候,因为对象类型的不同, 并不能进行相应的数据处理,所以必须要进行数据类型的转换,这也就是NSNumber,NSValue这两类值对象出现的原因. 简而言之,NSNumber就是实现 ...