이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "quality.h"
#include <bits/stdc++.h>
using namespace std;
int r, c, h, w, q[3001][3001];
int add[301][301];
array<int, 2> pos [90001];
bool good()
{
for (int i = 0; i + h - 1 < r; i++)
{
for (int j = 0; j + w - 1 < c; j++)
{
int sum = add[i + h - 1][j + w - 1];
if (i != 0) sum -= add[i - 1][j + w - 1];
if (j != 0) sum -= add[i + h - 1][j - 1];
if (i != 0 && j != 0) sum += add[i - 1][j - 1];
if (sum >= (h * w - 1) / 2 + 1) return true;
}
}
return false;
}
void make(int num)
{
for (int i = 0; i < r; i++)
{
for (int j = 0; j < c; j++) add[i][j] = 0;
}
for (int i = 0; i < r; i++)
{
for (int j = 0; j < c; j++)
{
if (q[i][j] <= num) add[i][j] = 1;
if (i != 0) add[i][j] += add[i - 1][j];
if (j != 0) add[i][j] += add[i][j - 1];
if (i != 0 && j != 0) add[i][j] -= add[i - 1][j - 1];
}
}
}
int bs()
{
int a = 0;
int b = r * c;
int res = -1;
while (a <= b)
{
int mid = (a + b) / 2;
make(mid);
if (good())
{
res = mid;
b = mid - 1;
} else a = mid + 1;
}
return res;
}
int rectangle(int R, int C, int H, int W, int Q[3001][3001]) {
r = R;
c = C;
h = H;
w = W;
for (int i = 0; i < 301; i++)
{
for (int j = 0; j < 301; j++) q[i][j] = Q[i][j];
}
return bs();
}
# | 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... |