当前位置:网站首页>EOJ 2021.10 E. XOR tree
EOJ 2021.10 E. XOR tree
2022-07-05 05:31:00 【solemntee】
Method 1 : First open a big pile . then d f s dfs dfs Again , Build a persistent dictionary tree , And each point throws the XOR maximum of itself and its ancestors into the heap . loop k k k Time , Each time the maximum value is ejected from the heap , Suppose the ejected point has been ejected x x x Time , Search the dictionary tree for its number x + 1 x+1 x+1 Large XOR value , Then throw it into the pile . Time complexity O ( 30 n + k ( l o g n + 30 ) ) O(30n+k(logn+30)) O(30n+k(logn+30))
1. This problem also reflects a skill, that is, to do the first k Great value (k< 1 e 6 1e6 1e6) The common method is to maintain a priority queue, get the maximum value each time, and then update .
2. The problem is no x All nodes can be persistent. The dictionary tree represents from the root to x The point group on the node chain Chengdu dictionary tree . Although in this way and query x The dictionary tree corresponding to the subtree of the node is equivalent , But in fact, this method can save one of tree chain partition when dealing with tree chain problem log
#include<bits/stdc++.h>
using namespace std;
struct
{
int vis[2];
int num;
}trie[30000005];
int tot;
int root[5000005];
int insert(int x,int rt)
{
int Root=++tot;
int now=root[rt];
for(int i=30;i>=0;i--)
/// This is determined according to the scope , The first one here is (1>>30) That is to say 2^31
{
int ch=(x>>i)&1;
trie[tot]=trie[now];
trie[tot].vis[ch]=tot+1;
trie[tot].num++;
now=trie[now].vis[ch];
tot++;
}
trie[tot]=trie[now];
trie[tot].num++;
return Root;
/// The reason for this is that it is convenient to build a tree root[x]=insert(a[x],i-1);
}
int query(int x,int k,int rt)
/// Inquire about x stay root[rt] The root of the persistent dictionary tree is XOR k Big
{
int now=root[rt];
int ans=0;
for(int i=30;i>=0;i--)
{
int ch=(x>>i)&1;
if(trie[trie[now].vis[!ch]].num>=k)
{
now=trie[now].vis[!ch];
ans|=(1<<i);
}
else
{
k-=trie[trie[now].vis[!ch]].num;
now=trie[now].vis[ch];
}
}
return ans;
}
struct node
{
int val,id,now;
bool operator < (const node &ths)const
{
if(val!=ths.val)return val<ths.val;
if(now!=ths.now)return now<ths.now;
return id<ths.id;
}
};
int dep[1000005],fa[1000005],a[1000005];
vector<int>v[1000005];
priority_queue<node>q;
void dfs(int x,int pre)
{
if(pre!=0)
{
dep[x]=dep[pre]+1;
fa[x]=pre;
q.push({
query(a[x],1,fa[x]),x,1});
}
root[x]=insert(a[x],pre);
for(auto to:v[x])if(to!=pre)
{
dfs(to,x);
}
}
vector<int>ans;
int main()
{
int n,k;
scanf("%d%d",&n,&k);
for(int i=1;i<n;i++)
{
int tu,tv;
scanf("%d%d",&tu,&tv);
v[tu].push_back(tv);
v[tv].push_back(tu);
}
for(int i=1;i<=n;i++)scanf("%d",&a[i]);
dfs(1,0);
for(int i=1;i<=k;i++)
{
node p=q.top();
q.pop();
ans.push_back(p.val);
if(p.now<dep[p.id])q.push({
query(a[p.id],p.now+1,fa[p.id]),p.id,p.now+1});
}
for(auto x:ans)printf("%d\n",x);
return 0;
}
Method 2 : First create a persistent dictionary tree , Then two points k Great value , Then traverse all the dictionary trees violently to get the answer .
边栏推荐
猜你喜欢
第六章 数据流建模—课后习题
服务熔断 Hystrix
挂起等待锁 vs 自旋锁(两者的使用场合)
A misunderstanding about the console window
C language Essay 1
GBase数据库助力湾区数字金融发展
剑指 Offer 53 - I. 在排序数组中查找数字 I
On-off and on-off of quality system construction
sync. Interpretation of mutex source code
[to be continued] [depth first search] 547 Number of provinces
随机推荐
Sword finger offer 05 Replace spaces
YOLOv5添加注意力机制
Add level control and logger level control of Solon logging plug-in
Educational Codeforces Round 107 (Rated for Div. 2) E. Colorings and Dominoes
Software test -- 0 sequence
剑指 Offer 04. 二维数组中的查找
A problem and solution of recording QT memory leakage
Sword finger offer 53 - I. find the number I in the sorted array
Maximum number of "balloons"
支持多模多态 GBase 8c数据库持续创新重磅升级
Download xftp7 and xshell7 (official website)
Yolov5 ajouter un mécanisme d'attention
room数据库的使用
GBase数据库助力湾区数字金融发展
Double pointer Foundation
Sword finger offer 53 - ii Missing numbers from 0 to n-1
Haut OJ 2021 freshmen week II reflection summary
Solon Logging 插件的添加器级别控制和日志器的级别控制
A new micro ORM open source framework
Pointnet++ learning