# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1176406 | igofan | Mergers (JOI19_mergers) | C++20 | 3093 ms | 32072 KiB |
#include <bits/stdc++.h>
using namespace std;
vector<vector<int>> adj, parent;
vector<int> depth;
void dfs(int node, int prev, int dis) {
depth[node] = dis;
parent[node][0] = prev;
for(auto child: adj[node]) if (child != prev) dfs(child, node, dis+1);
}
int ancestor(int x, int k) {
int cnt = 0;
while(k && x) {
if (k&1) x = parent[x][cnt];
k = k>>1; cnt++;
}
return x;
}
int lca(int a, int b) {
if (depth[a] < depth[b]) swap(a, b);
a = ancestor(a, depth[a]-depth[b]);
if (a==b) return a;
for(int k=19; k>=0; k--) {
int aa = parent[a][k];
int bb = parent[b][k];
if (aa != bb) {
a = aa; b = bb;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |