| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 110869 | WLZ | The Kingdom of JOIOI (JOI17_joioi) | C++17 | 2 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int INF = 0x3f3f3f3f;
int h, w, mx = 0, mn = INF;
vector< vector<int> > a;
void flip_h() {
for (int j = 0; j < w; j++) {
for (int i = 0; i < h / 2; i++) {
swap(a[h - i - 1][j], a[i][j]);
}
}
}
void flip_v() {
for (int i = 0; i < h; i++) {
for (int j = 0; j < w / 2; j++) {
swap(a[i][w - j - 1], a[i][j]);
}
}
}
int check(int k) {
int t = -1;
for (int i = 0; i < h; i++) {
for (int j = 0; j < w - 1; j++) {
if (a[i][j] < mx - k) {
t = max(t, j + 1);
}
}
for (int j = 0; j < t; j++) {
if (a[i][j] > mn + k) {
return 0;
}
}
}
return 1;
}
int solve() {
int lo = 0, hi = mx - mn, ans;
while (lo < hi) {
int mid = (lo + hi) / 2;
if (check(mid)) {
hi = mid;
} else {
lo = mid + 1;
}
}
return lo;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cin >> h >> w;
a.assign(h, vector<int>(w));
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
cin >> a[i][j];
mx = max(mx, a[i][j]);
mn = min(mn, a[i][j]);
}
}
int ans = solve();
flip_h();
ans = min(ans, solve());
flip_v();
ans = min(ans, solve());
flip_h();
ans = min(ans, solve());
cout << ans << '\n';
return 0;
}컴파일 시 표준 에러 (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... | ||||
