# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
611632 | alireza_kaviani | Meetings (JOI19_meetings) | C++17 | 163 ms | 262144 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 "meetings.h"
#include <bits/stdc++.h>
using namespace std;
#define all(x) (x).begin(), (x).end()
#define SZ(x) int((x).size())
const int MAXN = 2010;
int n , cur , sz[MAXN] , mx[MAXN] , par[MAXN] , mark[MAXN];
vector<int> adj[MAXN];
int cmp(int x , int y){
return sz[x] > sz[y];
}
int LCA(int v , int u){
return Query(0 , v , u);
}
void PreDFS(int v){
sz[v] = 1; mx[v] = v;
for(int u : adj[v]){
PreDFS(u);
par[u] = v;
sz[v] += sz[u];
}
sort(all(adj[v]) , cmp);
if(SZ(adj[v]) > 0){
mx[v] = mx[adj[v][0]];
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... |