# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1012884 | imann | Park (BOI16_park) | C++17 | 490 ms | 34312 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 <iostream>
#include <array>
#include <algorithm>
#include <cmath>
#include <set>
const int MAX_N = 2*1000+1;
const double EPS = 1e-3;
struct Tree {
int x, y, r;
};
struct Node {
int x, y;
};
struct Edge {
int s, e;
double l;
};
std::array<Tree, MAX_N> trees;
std::array<Node, 5 * MAX_N> nodes;
std::vector<Edge> edges;
std::array<std::array<double, 5>, 5> minAt;
class Dsu {
public:
std::array<int, 5 * MAX_N> parents, sizes;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |