# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1046497 | EntityPlantt | 삶의 질 (IOI10_quality) | C++17 | 8 ms | 7988 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "quality.h"
const int N = 3001;
typedef const int& cir;
short pref[N + 1][N + 1];
bool ok(cir R, cir C, cir H, cir W, int Q[N][N], cir X) {
for (int i = 1; i <= R; i++) {
for (int j = 1; j <= C; j++) {
pref[i][j] = pref[i][j - 1] + pref[i - 1][j] - pref[i - 1][j - 1] + (Q[i - 1][j - 1] <= X ? 1 : -1);
if (i >= H && j >= W && pref[i][j] - pref[i - H][j] - pref[i][j - W] + pref[i - H][j - W] > 0) return true;
}
}
return false;
}
int rectangle(int R, int C, int H, int W, int Q[N][N]) {
int l = 1, r = R * C, ans = r;
while (l <= r) {
int m = l + r >> 1;
if (ok(R, C, H, W, Q, m)) {
ans = m;
r = m - 1;
}
else l = m + 1;
}
return 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... |