# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
251100 | kostia244 | Werewolf (IOI18_werewolf) | C++17 | 1793 ms | 175512 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 "werewolf.h"
#include<bits/stdc++.h>
#define all(x) x.begin(), x.end()
using namespace std;
const int maxn = 1<<18;
using vi = vector<int>;
int TIME = -1;
struct dsu {
vi r, p;
vector<vi> ch;
vector<array<int, 2>> range;
vector<vector<array<int, 2>>> h;
dsu(int n) : r(n, 1), ch(n), h(n), p(n), range(n) {
iota(all(p), 0);
fill(all(range), array<int, 2>{0, 1});
for(int i = 0; i < n; i++) ch[i].push_back(i), h[i].push_back({n+1, i});
}
int par(int i) {
return i == p[i] ? i : p[i] = par(p[i]);
}
void unite(int i, int j) {
i = par(i), j = par(j);
if(i == j) return;
if(r[i] < r[j]) swap(i, j);
p[j] = i;
range[i][1] += r[j];
for(auto v : ch[j]) {
ch[i].push_back(v);
h[v].push_back({TIME, i});
range[v][0] += r[i];
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... |