# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
702937 | piOOE | Jail (JOI22_jail) | C++17 | 5079 ms | 33552 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
struct staticLCA {
vector<int> depth, ord, tin;
vector<vector<int>> st;
int n{}, root = 0;
void dfs(int v, int p, vector<vector<int>> &g) {
if (v != root) {
depth[v] = depth[p] + 1;
}
tin[v] = ord.size();
ord.push_back(v);
for (int to: g[v]) {
if (to != p) {
dfs(to, v, g);
ord.push_back(v);
}
}
}
int func(int a, int b) {
return depth[a] < depth[b] ? a : b;
}
staticLCA(vector<vector<int>> &g, int _root = 0) {
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |