博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU - 4825 Xor Sum
阅读量:6486 次
发布时间:2019-06-24

本文共 1955 字,大约阅读时间需要 6 分钟。

Zeus 和 Prometheus 做了一个游戏,Prometheus 给 Zeus 一个集合,集合中包含了N个正整数,随后 Prometheus 将向 Zeus 发起M次询问,每次询问中包含一个正整数 S ,之后 Zeus 需要在集合当中找出一个正整数 K ,使得 K 与 S 的异或结果最大。Prometheus 为了让 Zeus 看到人类的伟大,随即同意 Zeus 可以向人类求助。你能证明人类的智慧么? 

Input

输入包含若干组测试数据,每组测试数据包含若干行。 

输入的第一行是一个整数T(T < 10),表示共有T组数据。 
每组数据的第一行输入两个正整数N,M(<1=N,M<=100000),接下来一行,包含N个正整数,代表 Zeus 的获得的集合,之后M行,每行一个正整数S,代表 Prometheus 询问的正整数。所有正整数均不超过2^32。Output对于每组数据,首先需要输出单独一行”Case #?:”,其中问号处应填入当前的数据组数,组数从1开始计算。 
对于每个询问,输出一个正整数K,使得K与S异或值最大。

Sample Input

23 23 4 5154 14 6 5 63

Sample Output

Case #1:43Case #2:4  分析 首先得清楚,什么时候才求得最大的异或和?就是从高位开始,尽量让每个位不同,这样异或的结果一定最大。所以问题就是如何把所有数的二进制 表示保存起来,并需要便于访问查找。数最大是2^32,我们可以使用一个树来存,也就是字典树啦,以高位为根。在查找时,尽量选取不同数值的路径。
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long LL;const int maxn = 1e5+5;const int mod = 77200211+233;typedef pair
pii;#define X first#define Y second#define pb push_back//#define mp make_pair#define ms(a,b) memset(a,b,sizeof(a))const int inf = 0x3f3f3f3f;#define lson l,m,2*rt#define rson m+1,r,2*rt+1struct node{ int num; node *son[2]; node(){ num=0; son[0]=son[1]=NULL; }};node *root;void Insert(int x){ int a[32]; int xx=x; node *p=root,*q; for(int i=0;i<32;i++){ a[i]=xx&1; xx>>=1; } for(int i=31;i>=0;i--){ if(p->son[a[i]]!=NULL){ p=p->son[a[i]]; }else{ q = new node; p->son[a[i]]=q; p=q; } } p->num=x;}int Find(int x){ int a[32]; node *p=root; for(int i=0;i<32;i++){ a[i]=x&1; x>>=1; } for(int i=31;i>=0;i--){ if(p->son[!a[i]]!=NULL){ p=p->son[!a[i]]; }else p=p->son[a[i]]; } return p->num;}void del(node *p){ for(int i=0;i<2;i++) if(p->son[i]!=NULL) del(p->son[i]); delete(p);}int main(){ int t; scanf("%d",&t); int cas=0; while(t--){ root = new node; int n,m; scanf("%d%d",&n,&m); int x; for(int i=0;i

 

 

转载于:https://www.cnblogs.com/fht-litost/p/8684608.html

你可能感兴趣的文章
Silverlight 5 Beta新特性[4]文本缩进控制
查看>>
springMVC多数据源使用 跨库跨连接
查看>>
Git服务端和客户端安装笔记
查看>>
【iOS-cocos2d-X 游戏开发之十三】cocos2dx通过Jni调用Android的Java层代码(下)
查看>>
MongoDB的基础使用
查看>>
进程间通信——命名管道
查看>>
ssh登陆不需要密码
查看>>
java mkdir()和mkdirs()区别
查看>>
OSChina 周六乱弹 ——揭秘后羿怎么死的
查看>>
sorry,you must have a tty to run sudo
查看>>
项目中的积累,及常见小问题
查看>>
Python类型转换、数值操作(收藏)
查看>>
oracle11g dataguard 安装手册(转)
查看>>
1. Two Sum - Easy - Leetcode解题报告
查看>>
多线程---同步函数的锁是this(转载)
查看>>
百练 2742 统计字符数 解题报告
查看>>
js中回调函数写法
查看>>
React native android 最常见的10个问题
查看>>
数据结构和算法
查看>>
[pat]1045 Favorite Color Stripe
查看>>