# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
145065 | mosesmayer | Park (BOI16_park) | C++17 | 804 ms | 33596 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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... |