# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1021059 | 0npata | Amusement Park (JOI17_amusement_park) | C++14 | 23 ms | 5900 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 "Joi.h"
using namespace std;
#include<bits/stdc++.h>
#define vec vector
namespace joi {
const int MXN = 10'005;
int t = 0;
vec<int> tree[MXN];
int depth[MXN];
int ind[MXN];
vec<int> g[MXN];
void dfs1(int u, vec<bool>& vis) {
vis[u] = true;
for(int v : g[u]) {
if(vis[v]) continue;
dfs1(v, vis);
depth[u] = max(depth[u], 1+depth[v]);
tree[u].push_back(v);
}
sort(tree[u].begin(), tree[u].end(), [&](int x, int y) { return depth[x] == depth[y] ? x < y : depth[x] > depth[y]; });
}
void dfs2(int u) {
Compilation message (stderr)
# | 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... |