# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
599291 | OttoTheDino | Joker (BOI20_joker) | C++17 | 1550 ms | 13896 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;
#define rep(i,s,e) for (int i = s; i <= e; ++i)
#define rrep(i,s,e) for (int i = s; i >= e; --i)
#define fi first
#define se second
#define pb push_back
typedef vector<int> vi;
typedef pair<int,int> ii;
const int mx = 2e5;
vi adj[mx+1];
int par[mx+1], h[mx+1], tp[mx+1];
ii get_par (int u) {
if (u==par[u]) return {u, tp[u]};
ii res = get_par (par[u]);
return {res.fi, res.se^tp[u]};
}
void merge (int u, int v) {
ii paru = get_par(u), parv = get_par(v);
if (h[paru.fi]<h[parv.fi]) swap(paru, parv);
h[paru.fi] += h[paru.fi]==h[parv.fi];
par[parv.fi] = paru.fi;
tp[parv.fi] ^= parv.se==paru.se;
}
# | 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... |