# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
936010 | MinaRagy06 | Joker (BOI20_joker) | C++17 | 182 ms | 262144 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
const int N = 200'005;
int par[N], sz[N], dep[N];
int gud;
array<int, 2> find(int u) {
if (par[u] == u) {
return {u, 0};
}
array<int, 2> v = find(par[u]);
v[1] ^= dep[u];
return v;
}
vector<pair<int*, int>> logs;
void assign(int *x, int y) {
logs.push_back({x, *x});
*x = y;
}
void join(int u, int v) {
array<int, 2> pu = find(u), pv = find(v);
if (pu[0] == pv[0]) {
assign(&gud, gud && (dep[pv[0]] == (pv[1] ^ pu[1] ^ 1)));
return;
}
if (sz[pu[0]] < sz[pv[0]]) {
swap(u, v);
swap(pu, pv);
}
# | 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... |