이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "quality.h"
#include <vector>
#include <algorithm>
int rectangle(int R, int C, int H, int W, int Q[3001][3001]) {
int mn = 1e9;
for (int i = 0; i <= R - H; i ++) {
for (int j = 0; j <= C - W; j ++) {
std::vector <int> v(H*W);
int pos = 0;
for (int x = i; x < i + H; x ++) {
for (int y = j; y < j + W; y ++) {
v[pos ++] = Q[x][y];
}
}
std::sort(v.begin(), v.end());
mn = std::min(mn, v[H*W/2]);
}
}
return mn;
}
# | 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... |