# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
69487 | aome | Wild Boar (JOI18_wild_boar) | C++17 | 17243 ms | 386620 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 <bits/stdc++.h>
using namespace std;
const int N = 2005;
const int L = 100005;
const int M = 5;
const long long INF = 1e18;
struct Edge {
int w, to, id;
};
struct F {
long long w; int x, y;
F() { w = INF, x = y = 0; }
F(long w, int x, int y) : w(w), x(x), y(y) {}
bool operator < (const F& rhs) const {
return w < rhs.w;
}
void dbg() { cout << "#F " << w << ' ' << x << ' ' << y << '\n';}
};
struct Data { F a[M]; };
struct State {
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... |