# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1172476 | ElayV13 | Cat in a tree (BOI17_catinatree) | C++20 | 2 ms | 5184 KiB |
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define ld long double
#define FOR(a , b) for(int i = a;i <= b;i++)
#define pb push_back
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
const int MXN = 2e5 + 5;
const int INF = 1e18;
const int LOG = 20;
int n , d , dep[MXN] , up[LOG][MXN];
vector < int > adj[MXN];
void dfs(int v , int p)
{
up[0][v] = p;
for(int i = 1;i < LOG;i++) up[i][v] = up[i - 1][up[i - 1][v]];
for(int u : adj[v])
{
if(u != p) dep[u] = dep[v] + 1 , dfs(u , v);
}
}
int LCA(int a , int b)
{
if(dep[a] < dep[b]) swap(a , b);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |