hdu 4828 Xor Sum (trie 树模板题,经典应用)

hdu 4825 题目链接

题意:给定n个数,然后给出m个询问,每组询问一个数x,问n中的数y使得x和y的异或和最大。

思路:字典树。。把每个数转化成二进制,注意补全前导0,使得所有数都有相同的位数。

如果想要异或和最大,那么每一位尽可能都是1.

所以做法是,先构建字典树,然后每次find的时候,尽可能按照和当前寻找的数的位相反的位的方向走(如果有的话)

比如当前位是1,那我就往0的方向走。

需要注意的是,多组数据,每次要重新初始化一遍。

做法是 在struct 中重新 root = new Node() 一下。。这样就重新调用了Node中初始化用的构造函数。

/* ***********************************************
Author :111qqz
Created Time :2016年08月15日 星期一 20时03分05秒
File Name :code/hdu/4825.cpp
************************************************ */
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <string>
#include <cmath>
#include <cstdlib>
#include <deque>
#include <ctime>
#define fst first
#define sec second
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define ms(a,x) memset(a,x,sizeof(a))
typedef long long LL;
#define pi pair < int ,int >
#define MP make_pair
using namespace std;
const double eps = 1E-8;
const int dx4[4]={1,0,0,-1};
const int dy4[4]={0,-1,1,0};
const int inf = 0x3f3f3f3f;
const int LEN = 32;
int n,m;
char str[35];
struct Trie
{
    struct Node
    {
    Node *nxt[2];
    int val;
    Node()
    {
        for ( int i = 0 ; i < 2 ; i++) nxt[i]=NULL;
        val = 0 ;
    }
    };
    Node *root;
    void init()
    {
    root = new Node();
    }
    Trie()
    {
    root = new Node();
    }
    void Insert(char *s,int num)
    {
    Node *u =root;
    int len = strlen(s);
//	cout<<" len :"<<len<<endl;
    for ( int i = 0 ; i < len ; i++)
    {
        int v = s[i]-'0';
        if (u->nxt[v]==NULL) u->nxt[v] = new Node();
        u = u->nxt[v];
    }
    u->val = num;
    }
    int Find(char *s)
    {
    Node *u = root;
    int len = strlen(s);
    for ( int i = 0 ; i < len ; i++)
    {
        int x = s[i]-'0';
        int y = !x;
        if (u->nxt[y]==NULL)  //相反的方向有路就走相反的,没路就只能走一样的。
        u = u->nxt[x];
        else u = u->nxt[y];
    }
    return u->val;
    }
}trie;
void bianshen( int x)
{
    f 大专栏  hdu 4828 Xor Sum (trie 树模板题,经典应用)or ( int i = LEN-1,j=0 ; i>=0 ; i--,j++) //高位补0,以及str[0]是最高位,str[LEN-1]是最低位
    str[i] =((x>>j)&1)+'0';
}
int main()
{
    #ifndef  ONLINE_JUDGE
    freopen("code/in.txt","r",stdin);
  #endif
    int T;
    cin>>T;
    int cas = 0 ;
    while (T--)
    {
        trie.init();
        printf("Case #%d:n",++cas);
        scanf("%d%d",&n,&m);
        for ( int i = 1 ; i <= n ; i++)
        {
        int x;
        scanf("%d",&x);
        bianshen(x);
        trie.Insert(str,x);
        }
        while (m--)
        {
        int x;
        scanf("%d",&x);
        bianshen(x);
        printf("%dn",trie.Find(str));
        }
    }
  #ifndef ONLINE_JUDGE
  fclose(stdin);
  #endif
    return 0;
}

×

真诚赞赏,手留余香

2元
5元
10元
50元
100元
任意金额

2元

使用微信扫描二维码完成支付



原文地址:https://www.cnblogs.com/lijianming180/p/12389324.html

时间: 2024-10-30 01:34:09

hdu 4828 Xor Sum (trie 树模板题,经典应用)的相关文章

hdu 4285 Xor Sum trie树

Xor Sum Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 132768/132768 K (Java/Others) Problem Description Zeus 和 Prometheus 做了一个游戏,Prometheus 给 Zeus 一个集合,集合中包含了N个正整数,随后 Prometheus 将向 Zeus 发起M次询问,每次询问中包含一个正整数 S ,之后 Zeus 需要在集合当中找出一个正整数 K ,使得 K

HDU 1251 Trie树模板题

1.HDU 1251 统计难题  Trie树模板题,或者map 2.总结:用C++过了,G++就爆内存.. 题意:查找给定前缀的单词数量. #include<iostream> #include<cstring> #include<cmath> #include<queue> #include<algorithm> #include<cstdio> #define max(a,b) a>b?a:b #define F(i,a,b

hdu 4825 Xor Sum(trie+贪心)

hdu 4825 Xor Sum(trie+贪心) 刚刚补了前天的CF的D题再做这题感觉轻松了许多.简直一个模子啊...跑树上异或x最大值.贪心地让某位的值与x对应位的值不同即可. 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <algorithm> 5 #include <cmath> 6 #define CLR(a,b) memset((a)

poj3630 Phone List (trie树模板题)

Phone List Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 26328   Accepted: 7938 Description Given a list of phone numbers, determine if it is consistent in the sense that no number is the prefix of another. Let's say the phone catalogu

HDU 4825 Xor Sum 字典树+位运算

点击打开链接 Xor Sum Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 132768/132768 K (Java/Others) Total Submission(s): 291    Accepted Submission(s): 151 Problem Description Zeus 和 Prometheus 做了一个游戏,Prometheus 给 Zeus 一个集合,集合中包含了N个正整数,随后 Prometheus

hdu 4825 xor sum(字典树+位运算)

Xor Sum Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 132768/132768 K (Java/Others)Total Submission(s): 4144    Accepted Submission(s): 1810 Problem Description Zeus 和 Prometheus 做了一个游戏,Prometheus 给 Zeus 一个集合,集合中包含了N个正整数,随后 Prometheus 将向 Ze

HDU 1671 Phone List (Trie树 好题)

Phone List Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 11721    Accepted Submission(s): 3982 Problem Description Given a list of phone numbers, determine if it is consistent in the sense th

hdu 4825 Xor Sum(字典树)

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

HiHo1014 : Trie树(Trie树模板题)

描述 小Hi和小Ho是一对好朋友,出生在信息化社会的他们对编程产生了莫大的兴趣,他们约定好互相帮助,在编程的学习道路上一同前进. 这一天,他们遇到了一本词典,于是小Hi就向小Ho提出了那个经典的问题:“小Ho,你能不能对于每一个我给出的字符串,都在这个词典里面找到以这个字符串开头的所有单词呢?” 身经百战的小Ho答道:“怎么会不能呢!你每给我一个字符串,我就依次遍历词典里的所有单词,检查你给我的字符串是不是这个单词的前缀不就是了?” 小Hi笑道:“你啊,还是太年轻了!~假设这本词典里有10万个单