# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
996046 | vqpahmad | 삶의 질 (IOI10_quality) | C++14 | 112 ms | 37960 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "quality.h"
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define endl '\n'
#define FF first
#define SS second
#define all(a) a.begin(), a.end()
#define mod (ll)(1000000007)
int rectangle(int rr, int cc, int h, int w, int A[3001][3001]){
int l = 1, r = rr * cc, res;
while (l < r) {
int md = (l + r) / 2;
int mx = 1000000000;
vector<vector<int> > CC(3001, vector<int>(3001));
for (int i = 0; i < rr; i++) {
for (int j = 0; j < cc; j++) {
CC[i][j] = (A[i][j] <= md);
if (i) {
CC[i][j] += CC[i - 1][j];
}
if (j) {
CC[i][j] += CC[i][j - 1];
}
if (i && j){
CC[i][j] -= CC[i - 1][j - 1];
}
if (rr >= h - 1 && cc >= w - 1) {
int sum = CC[i][j];
if (i - h >= 0) {
sum -= CC[i - h][j];
}
if (j - w >= 0) {
sum -= CC[i][j - w];
}
if (i - h >= 0 && j - w >= 0) {
sum += CC[i - h][j - w];
}
mx = max(mx, sum);
}
}
}
if (mx >= h * w / 2) {
res = md, r = md - 1;
}
else {
l = md + 1;
}
}
return res;
}
컴파일 시 표준 에러 (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... |