Trie:hdu 4825、1251、1247、Poj 3764


hdu 4825链接
在这里插入图片描述
题目意思很简单,就是要求最大异或值的数。
我们可以从二进制的最高位开始选择,不断的排除一些数。我们先假设存在某些数字的二进制数是与当前查找的数不一样的,我们进入这一部分数进行查找,以此重复,不断排除一部分数,最后找到最佳的数。
如果在查找的过程中某一位不存在不相同的数,我们就只能从相同的数中查找了。
总结一句就是优先查找不同的。

#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
typedef unsigned int ui;//unsigned int防止出现爆int.
const int N1 = 4e6 + 10;
ui trie[N1][2], tot, flag[N1];
void build_trie(ui x) {//建立字01字典树的过程。int root = 0;for(int i = 31; i >= 0; i--) {题意不超过2^32,从32位开始,其实也可以30,但是不要超过31,如果用int.int u = x >> i & 1;if(!trie[root][u])    trie[root][u] = ++tot;root = trie[root][u];}flag[root] = x;//这个节点标记为这个数的值。
}
ui find_max(ui x) {//找到与之匹配的异化值最大的数。int root = 0;for(int i = 31; i >= 0; i--) {int u = x >> i & 1;//取出这一位的二进制数。if(trie[root][!u])//优先进入与之不同的二进制数位。root = trie[root][!u];else    root = trie[root][u];}return flag[root];//返回查找的最优答案。
}
int main() {
//    freopen("D:\\Code\\ce.txt", "r", stdin);ui t, a, n, m;scanf("%u", &t);for(int k = 1; k <= t; k++) {printf("Case #%d:\n", k);tot = 0;memset(trie, 0, sizeof trie);//多组读入,注意清零。scanf("%u %u", &n, &m);for(int i = 0; i < n; i++) {scanf("%u", &a);build_trie(a);}for(int i = 0; i < m; i++) {scanf("%u", &a);printf("%u\n", find_max(a));}}return 0;
}


hdu 1251链接
在这里插入图片描述
这题应该比上题还简单,直接上代码了。

#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
const int N = 3e6 + 10;
int trie[N][26], flag[N], tot;
char s[20];
void build_trie() {int root = 0, n = strlen(s);for(int i = 0; i < n; i++) {int u = s[i] - 'a';if(!trie[root][u])    trie[root][u] = ++tot;root = trie[root][u];flag[root]++;//单词经过的节点,加一。}
}
int find_sum() {int root = 0, n = strlen(s);for(int i = 0; i < n; i++) {int u = s[i] - 'a';if(!trie[root][u])    return 0;//出现一个字母在字典中不匹配,立即返回查找不到。root = trie[root][u];}return flag[root];//返回这个节点有多少单词经过
}
int main() {
//    freopen("D:\\Code\\ce.txt", "r", stdin);while(gets(s)) {if(s[0] == 0)break;build_trie();}while(gets(s))printf("%d\n", find_sum());return 0;
}


hdu 1247链接
在这里插入图片描述
这题应该是比上两题更难一点,具体看代码详解吧。

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
const int N1 = 5e6 + 10, N2 = 5e4 + 10;
int trie[N1][26], is_word[N1], tot;
string str[N2]; 
void build_trie(string s) {//建字典树。int root = 0, n = s.size();for(int i = 0; i < n; i++) {int u = s[i] - 'a';if(!trie[root][u])    trie[root][u] = ++tot;root = trie[root][u];}is_word[root] = 1;//标记这个节点有单词。
}
bool judge_tail(string s, int pos) {//判断后缀是否是一个单词,pos是后缀的起始位置。int root = 0, n = s.size();for(int i = pos; i < n; i++) {int u = s[i] - 'a';if(!trie[root][u])    return false;root = trie[root][u];if(is_word[root] && i == n - 1)//整个需要判断的后缀是否是一个单词。return true;}return false;
}
bool judge_front(string s) {//这里判断单词的前缀是否是一个单词。int root = 0, n = s.size();for(int i = 0; i < n; i++) {int u = s[i] - 'a';if(!trie[root][u])    return false;//有一个字母没有查找到,返回失败。root = trie[root][u];if(is_word[root] && judge_tail(s, i + 1))//前缀是一个单词,接下来就是判断后缀是否是一个单词。return true;}return false;
}
int main() {
//    freopen("D:\\Code\\ce.txt", "r", stdin);int n = 0;while(cin >> str[n])build_trie(str[n++]);for(int i = 0; i < n; i++)if(judge_front(str[i]))cout << str[i] << endl; return 0;
} 


Poj 3764链接
在这里插入图片描述
这题应该是这几题里面最难的题了,但是却又跟第一题有点类似。

#include<iostream>
#include<algorithm>
#include<cstring>
#include<cstdio>
using namespace std;
const int N1 = 2e5 + 10, N2 = 4e6 + 10;
int trie[N2][2], tot, cnt, n, head[N1], a[N1];
struct Edge {//链式向前星。int to, next, value;
}edge[N1];
void add(int x, int y, int value) {//存图的过程edge[cnt].to = y;edge[cnt].value = value;edge[cnt].next = head[x];head[x] = cnt++; 
}
void dfs(int u, int fa, int sum) {//通过dfs得到每个节点到根节点的异或值。a[u] = sum;for(int i = head[u]; i; i = edge[i].next) {if(edge[i].to != fa)	dfs(edge[i].to, u, sum ^ edge[i].value);}
}
void build_trie(int x) {//建立字典树。int root = 0;for(int i = 30; i >= 0; i--) {int u = x >> i & 1;if(!trie[root][u])	trie[root][u] = ++tot;root = trie[root][u];}
}
int find_max(int x) {//查找最大值。int root = 0, ans = 0;for(int i = 30; i >= 0; i--) {int u = x >> i & 1;if(trie[root][!u]) {ans += (1 << i);//如果走这里的话,我们可以得到答案的这一位是1,或者我们可以像第一题一样现在建立字典树的时候记录下节点的值然后在返回这个最大值,最后再和当前查找的异或。root = trie[root][!u];}else	root = trie[root][u];}return ans;
}
int main() {while(scanf("%d", &n) != EOF) {tot = 0, cnt = 1;memset(trie, 0, sizeof trie);memset(head, 0, sizeof head); //多组输入, 清零。for(int i = 1; i < n; i++) {int x, y, v;scanf("%d %d %d", &x, &y, &v);add(x, y, v);add(y, x, v);}dfs(0, 0, 0);for(int i = 0; i < n; i++)//得到异或值后,开始建字典树。build_trie(a[i]);int ans = 0;for(int i = 0; i < n; i++)ans = max(ans, find_max(a[i]));printf("%d\n", ans);	}return 0;
} 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/314629.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Codeforces Round #675 (Div. 2) F. Boring Queries 区间lcm + 主席树

传送门 文章目录题意&#xff1a;思路&#xff1a;题意&#xff1a; 给你一个长度为nnn的序列aaa&#xff0c;qqq个询问&#xff0c;每次询问[l,r][l,r][l,r]内的lcmlcmlcm是多少&#xff0c;对1e971e971e97取模。 n≤1e5,a≤2e5,q≤1e5n\le1e5,a\le2e5,q\le1e5n≤1e5,a≤2e5,…

ASP.NET Core on K8S深入学习(2)部署过程解析与部署Dashboard

上一篇《K8S集群部署》中搭建好了一个最小化的K8S集群&#xff0c;这一篇我们来部署一个ASP.NET Core WebAPI项目来介绍一下整个部署过程的运行机制&#xff0c;然后部署一下Dashboard&#xff0c;完成可视化管理。本篇已加入了《.NET Core on K8S学习实践系列文章索引》&#…

字符Hash初步

兔子与兔子 很久很久以前&#xff0c;森林里住着一群兔子。 有一天&#xff0c;兔子们想要研究自己的 DNA 序列。 我们首先选取一个好长好长的 DNA 序列&#xff08;小兔子是外星生物&#xff0c;DNA 序列可能包含 26 个小写英文字母&#xff09;。 然后我们每次选择两个区间&…

02 | 健康之路 kubernetes(k8s) 实践之路 : 生产可用环境及验证

上一篇《 01 | 健康之路 kubernetes(k8s) 实践之路 : 开篇及概况 》我们介绍了我们的大体情况&#xff0c;也算迈出了第一步。今天我们主要介绍下我们生产可用的集群架设方案。涉及了整体拓补图&#xff0c;和我们采用的硬件配置&#xff0c;目前存在的问题等内容。遵循上一篇提…

NWERC 2018 C. Circuit Board Design 树 + 构造

传送门 文章目录题意&#xff1a;思路&#xff1a;题意&#xff1a; 给你一颗nnn个点的树&#xff0c;让你在二维平面中构造一颗树&#xff0c;保证相邻点的距离正好为111&#xff0c;并且线段不能有相交&#xff0c;坐标绝对值≤3e3\le3e3≤3e3。 n≤1e3n\le1e3n≤1e3 思路&…

[开源] .NETCore websocket 即时通讯组件---ImCore

ImCore 是一款 .NETCore 下利用 WebSocket 实现的简易、高性能、集群即时通讯组件&#xff0c;支持点对点通讯、群聊通讯、上线下线事件消息等众多实用性功能。开源地址&#xff1a;https://github.com/2881099/im &#xff0c;求 star~~dotnet add package ImCoreIM服务端publ…

算法竞赛进阶指南——后缀数组

后缀数组 后缀数组 (SA) 是一种重要的数据结构&#xff0c;通常使用倍增或者DC3算法实现&#xff0c;这超出了我们的讨论范围。 在本题中&#xff0c;我们希望使用快排、Hash与二分实现一个简单的O(nlog2n)的后缀数组求法。 详细地说&#xff0c;给定一个长度为 n 的字符串S&a…

NWERC 2018 A. Access Points 二维转一维 + 单调栈

传送门 文章目录题意&#xff1a;思路&#xff1a;题意&#xff1a; 给你平面上nnn个点&#xff0c;你需要对于1−n1-n1−n依次选择nnn个点作为每个点的终点&#xff0c;满足选择的点i<j,xi≤xj,yi≤yji<j,x_i\le x_j,y_i\le y_ji<j,xi​≤xj​,yi​≤yj​&#xff0…

【译】在 Linux 上不安装 Mono 构建 .NET Framework 类库

在这篇文章中&#xff0c;我展示了如何在 Linux 上构建针对 .NET Framework 版本的.NET项目&#xff0c;而不使用 Mono。通用使用微软新发布的 Mocrosoft.NETFramework.ReferenceAssemblies NuGet 包&#xff0c;您将不需要安装除 .NET Core SDK 之外的任何其他软件包&#xff…

hdu 5023 线段树染色问题

题目链接 A Corrupt Mayor’s Performance Art Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 100000/100000 K (Java/Others) Total Submission(s): 4094 Accepted Submission(s): 1418 Problem Description Corrupt governors always find ways to get dirty money…

Codeforces Round #740 (Div. 2) D2. Up the Strip dp + 分块优化 + 逆向思维

传送门 文章目录题意&#xff1a;思路题意&#xff1a; 有nnn个细胞&#xff0c;你初始在第nnn细胞上&#xff0c;假设你当前在xxx处&#xff0c;你每次可以进行如下两个操作&#xff1a; (1)(1)(1)选择[1,x−1][1,x-1][1,x−1]内一个数yyy&#xff0c;跳到第x−yx-yx−y个细胞…

poj 2528 线段树离散化+染色

题目链接 Mayor’s posters Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 92628 Accepted: 26452 Description The citizens of Bytetown, AB, could not stand that the candidates in the mayoral election campaign have been placing their electoral pos…

Codeforces Round #740 (Div. 2) E. Bottom-Tier Reversals 构造

传送门 文章目录题意&#xff1a;思路&#xff1a;题意&#xff1a; 给你一个长度为奇数nnn的排列aaa&#xff0c;每次可以选择长度为奇数的前缀&#xff0c;并将[1,len][1,len][1,len]翻转&#xff0c;你需要用不超过5n2\frac{5n}{2}25n​次操作将其变成有序的&#xff0c;输…

DevOps书单:调研了101名专家,推荐这39本必读书籍

任何一个领域都遵循从新人到熟手&#xff0c;从熟手到专家的路径。在成长过程中&#xff0c;DevOps人经常会陷入没人带&#xff0c;没人管&#xff0c;找不到职业方向的迷茫。DevOps是在商业演进与企业协作的进化过程中诞生的一个全新职业&#xff0c;被很多人看成是一个“全栈…

模板:Prime最小生成树堆优化 + Dijkstra单源最短路堆优化

Dijkstra 单源最短路堆优化 #include<bits/stdc.h> using namespace std; typedef pair<int, int> PII; const int N 2e5 10; int head[N], to[N], value[N], nex[N], cnt 1; int n, m, rt, st, dis[N], visit[N]; struct cmp {bool operator()(PII a, PII b) …

Gym - 102001K Boomerangs 构造 + 三元环

传送门 文章目录题意&#xff1a;思路&#xff1a;题意&#xff1a; 给你一张nnn个点mmm条边的简单图&#xff0c;让你找出尽可能多的三元环&#xff0c;要求每个三元环都不能共边&#xff0c;输出三元环数量和具体是那个。 n,m≤1e5n,m\le1e5n,m≤1e5 思路&#xff1a; 其实…

面对人性,有的选择向左,有的向右

这里是Z哥的个人公众号每周五11&#xff1a;45 按时送达有时也会有感而发&#xff0c;来加个餐&#xff5e;我的第「84」篇原创敬上前天早上&#xff0c;在36kr看到一篇文章《一个负能量的人&#xff0c;可以轻易搞垮周围人的生活》&#xff0c;讲述了可能我们每个人身边都存在…

10分钟了解分布式CAP、BASE理论

CAP理论2000年7月&#xff0c;Eric Brewer教授提出CAP猜想&#xff1b;2年后&#xff0c;Seth Gilbert和Nancy Lynch从理论上证明了CAP&#xff1b;之后&#xff0c;CAP理论正式成为分布式计算领域的公认定理。CAP定律说的是在一个分布式计算机系统中&#xff0c;一致性&#x…

2018 ICPC Asia Jakarta Regional Contest J. Future Generation 状压dp

传送门 文章目录题意&#xff1a;思路&#xff1a;题意&#xff1a; 给你nnn个串&#xff0c;字符集是a−za-za−z&#xff0c;让你在每个串种选择一个子序列&#xff0c;保证对于i<j,si<sji<j,s_i<s_ji<j,si​<sj​&#xff0c;也就是选择的串字典序是严格…

ASP.NET Core Web Api之JWT刷新Token(三)

本节我们进入JWT最后一节内容&#xff0c;JWT本质上就是从身份认证服务器获取访问令牌&#xff0c;继而对于用户后续可访问受保护资源&#xff0c;但是关键问题是&#xff1a;访问令牌的生命周期到底设置成多久呢&#xff1f;见过一些使用JWT的童鞋会将JWT过期时间设置成很长&a…