# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
35362 | gabrielsimoes | Cultivation (JOI17_cultivation) | C++14 | 2000 ms | 2020 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAXR = 42;
const int INF = 1e9 + 10;
typedef pair<int, int> pii;
#define x first
#define y second
int R, C, n;
vector<pii> v;
int main() {
scanf("%d %d %d", &R, &C, &n);
assert(R <= 40 && C <= 40);
for (int i = 0, x, y; i < n; i++) {
scanf("%d %d", &x, &y);
v.push_back(pii(x, y));
}
int ans = INF;
for (int a = 0; a < R; a++) {
for (int b = 0; b < R; b++) {
for (int c = 0; c < C; c++) {
for (int d = 0; d < C; d++) {
bool bad = 0;
for (int x = 1; x <= R && !bad; x++) {
for (int y = 1; y <= C; y++) {
bool ok = 0;
for (pii p : v) {
if (((p.x < x && x - p.x <= a) || (p.x >= x && p.x - x <= b)) &&
((p.y < y && y - p.y <= c) || (p.y >= y && p.y - y <= d)))
ok = 1;
}
if (!ok) {
bad = 1;
break;
}
}
}
if (!bad) ans = min(ans, a + b + c + d);
}
}
}
}
printf("%d\n", ans);
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |