# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1176448 | DangKhoizzzz | Cat in a tree (BOI17_catinatree) | C++20 | 3 ms | 7488 KiB |
#include <bits/stdc++.h>
#define ll long long
using namespace std;
const int maxn = 3e5 + 7;
int n, D, dep[maxn], jump[maxn][23];
vector <int> g[maxn];
vector <int> chosen;
int leaf = 1;
void dfs(int u, int p)
{
if(g[u].size() == 1) leaf = u;
for(int v: g[u])
{
if(v == p) continue;
dep[v] = dep[u] + 1;
jump[v][0] = u;
dfs(v, u);
}
}
void build()
{
dep[0] = -1;
dfs(1, 1);
for(int j = 1; j <= 19; j++)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |