# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1170212 | Tob | City (JOI17_city) | C++20 | 244 ms | 30464 KiB |
#include <bits/stdc++.h>
#include "Encoder.h"
#define all(x) x.begin(), x.end()
#define pb push_back
#define FIO ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0)
using namespace std;
typedef long long ll;
typedef pair <ll, ll> pii;
const int maxn = 25e4 + 7;
int tim;
vector <int> adj[maxn];
ll st[maxn], siz[maxn];
vector <ll> v;
void dfs(int x, int p = -1) {
st[x] = tim++;
siz[x] = 1;
for (int y : adj[x]) if (y != p) {
dfs(y, x);
siz[x] += siz[y];
}
int pp = lower_bound(all(v), siz[x]) - v.begin();
siz[x] = v[pp];
tim = st[x] + siz[x];
Code(x, (st[x] << 9) + pp);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |