# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1142440 | dombly | Werewolf (IOI18_werewolf) | C++20 | 4091 ms | 13752 KiB |
#include <bits/stdc++.h>
#include "werewolf.h"
#define F first
#define S second
#define pb push_back
using namespace std;
struct DSU {
vector<int>par;
void init(int n) {
par.resize(n + 10);
for(int i = 0; i < n; i++) par[i] = i;
}
int get(int x) {
return (x == par[x] ? x : par[x] = get(par[x]));
}
void unite(int u,int v) {
u = get(u); v = get(v);
if(u != v) par[u] = v;
}
bool same(int u,int v) {
return (get(u) == get(v));
}
};
bool cmpL(pair<int,int>a,pair<int,int>b) {
return min(a.F,a.S) > min(b.F,b.S);
}
# | 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... |