# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
699272 | KoD | 게임 (APIO22_game) | C++17 | 1528 ms | 68032 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 "game.h"
#include <algorithm>
#include <utility>
#include <vector>
namespace kod {
using namespace std;
int n, k;
vector<int> l, r;
vector<vector<int>> in, out;
int get_level(const int u) { return l[u] >= r[u] ? 0 : 32 - __builtin_clz(l[u] ^ r[u]); }
bool check_vertex(const int u);
bool check_edge(const int u, const int v);
bool check_vertex(const int x) {
for (const int y : out[x]) {
if (check_edge(x, y)) {
return true;
}
}
for (const int y : in[x]) {
if (check_edge(y, x)) {
return true;
}
}
return false;
# | 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... |