# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
634353 | tabr | 기지국 (IOI20_stations) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#ifdef tabr
#include "library/debug.cpp"
#else
#define debug(...)
#endif
// editorial?
vector<int> label(int n, int k, vector<int> x, vector<int> y) {
vector<vector<int>> g(n);
for (int i = 0; i < n - 1; i++) {
g[x[i]].emplace_back(y[i]);
g[y[i]].emplace_back(x[i]);
}
vector<int> depth(n), sz(n);
{
function<void(int, int)> Dfs = [&](int v, int p) {
sz[v]++;
for (int to : g[v]) {
if (to == p) {
continue;
}
depth[to] = depth[v] + 1;
Dfs(to, v);
sz[v] += sz[to];
}
};
Dfs(0, -1);
}
vector<int> res(n);
function<void(int, int, int, int)> Dfs = [&](int v, int p, int low, int high) {
if (depth[v] % 2 == 0) {
res[v] = low;
low++;
} else {
res[v] = high - 1;
high--;
}
for (int to : g[v]) {
if (to == p) {
continue;
}
Dfs(to, v, low, low + sz[to]);
low += sz[to];
}
assert(low == high);
};
Dfs(0, -1, 0, n, 0);
return res;
}
int find_next_station(int s, int t, vector<int> c) {
sort(c.begin(), c.end());
if (c[0] < s) {
reverse(c.begin(), c.end());
for (int v : c) {
if (v <= t && t < s) {
return v;
}
}
} else {
for (int v : c) {
if (s < t && t <= v) {
return v;
}
}
}
return c.back();
}
#ifdef tabr
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
return 0;
}
#endif