# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
676037 | Hegdahl | 늑대인간 (IOI18_werewolf) | C++17 | 981 ms | 163412 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>
using namespace std;
template <class F>
struct yc {
F f_;
yc(F &&f) : f_(std::forward<F>(f)) {}
decltype(auto) operator()(auto &&...args) {
return f_(std::ref(*this), std::forward<decltype(args)>(args)...);
}
};
struct krusk {
vector<array<int, 18>> u;
vector<int> l, r, lo, hi;
vector<int> order, where;
vector<int> lm, rm;
krusk(int n, const vector<array<int, 2>> &e)
: u(2 * n - 1),
l(n - 1, -1),
r(n - 1, -1),
lo(2 * n - 1),
hi(2 * n - 1),
where(2 * n - 1, -1),
lm(2 * n - 1, (int)1e9),
rm(2 * n - 1, -(int)1e9) {
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... |