# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1101076 | SulA | 삶의 질 (IOI10_quality) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "quality.h"
#include "grader.h"
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#define bitcount __builtin_popcountll
using namespace std;
using namespace __gnu_pbds;
using namespace chrono;
int rectangle(int n, int m, int h, int w, int* a[3000]) {
auto check = [&](int x) {
vector<vector<int>> g(n, vector<int>(m, 0));
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
g[i][j] = a[i][j] <= x ? 1 : -1;
if (i != 0) g[i][j] += g[i-1][j];
if (j != 0) g[i][j] += g[i][j-1];
if (i != 0 && j != 0) g[i][j] -= g[i-1][j-1];
}
}
auto sum = [&](int x1, int y1, int x2, int y2) {
int sum = g[x2][y2];
if (x1 != 0) sum -= g[x1 - 1][y2];
if (y1 != 0) sum -= g[x2][y1 - 1];
if (x1 != 0 && y1 != 0) sum += g[x1 - 1][y1 - 1];
return sum;
};
int mx = -h*w;
for (int x1 = 0, x2 = h-1; x2 < n; x1++, x2++) {
for (int y1 = 0, y2 = w-1; y2 < m; y1++, y2++) {
int s = sum(x1, y1, x2, y2);
mx = max(mx, s);
}
}
return mx;
};
int ans = 0;
int l = 1, r = n*m;
for (int i = l; i <= r; i++) if (check(i) > 0) return i;
assert(false);
}