# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1123324 | anmattroi | Werewolf (IOI18_werewolf) | C++20 | 3863 ms | 365648 KiB |
#include "werewolf.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> check_validity(int N, vector<int> X, vector<int> Y,
vector<int> S, vector<int> E,
vector<int> L, vector<int> R) {
int M = X.size();
vector<int> g1[N+N-1], g2[N+N-1];
int d1[N+N-1], d2[N+N-1];
int par[N+N-1], val1[N+N-1], val2[N+N-1];
int pos1[N+N-1], pos2[N+N-1], id1 = 0, id2 = 0;
#define fi first
#define se second
using ii = pair<int, int>;
vector<vector<ii> > f(20, vector<ii>(4*N)), g(20, vector<ii>(4*N));
function<int(int)> find_set = [&](int v) {
return par[v] == v ? v : par[v] = find_set(par[v]);
};
fill(val1, val1 + N + N - 1, N);
fill(val2, val2 + N + N - 1, 0);
# | 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... |