# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
145065 | mosesmayer | Park (BOI16_park) | C++17 | 804 ms | 33596 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>
#define pb push_back
#define fi first
#define se second
using namespace std;
typedef vector<int> vi;
typedef long long LL;
typedef pair<int,int> pii;
typedef pair<pii, int> iii;
const LL LINF = 1e18;
const int mxsz = 2e3 + 10;
int n, m;
int w, h;
struct Circ{
int x, y, r;
Circ(){}
Circ(int x, int y, int r): x(x), y(y), r(r) {}
} cr[mxsz];
istream& operator>> (istream& is, Circ &c) {
is >> c.x >> c.y >> c.r;
return is;
}
LL d[mxsz][mxsz];
void read(){
cin >> n >> m >> w >> h;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |