이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "soccer.h"
#include <bits/stdc++.h>
using namespace std;
const int MAX = 2005;
int n, a[MAX][MAX];
int L[MAX][MAX];
int R[MAX][MAX];
int res;
map<array<int, 5>, bool> was;
void rec(int xl, int xr, int yl, int yr, int cur) {
if (was[{xl, xr, yl, yr, cur}]) {
return;
}
res = max(res, cur);
was[{xl, xr, yl, yr}] = true;
if (xl > 0) {
// up
for (int i = yl; i <= yr; i++) {
if (a[xl - 1][i] == 1) {
continue;
}
int t = min(yr, R[xl - 1][i]);
rec(xl - 1, xr, i, t, cur + t - i + 1);
}
}
if (xr + 1 < n) {
// down
for (int i = yl; i <= yr; i++) {
if (a[xr + 1][i] == 1) {
continue;
}
int t = min(yr, R[xr + 1][i]);
rec(xl, xr + 1, i, t, cur + t - i + 1);
}
}
}
int biggest_stadium(int N, vector<vector<int>> F) {
n = N;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
a[i][j] = F[i][j];
}
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (a[i][j] == 1) {
continue;
}
int p = j;
while (p + 1 < n && a[i][p + 1] == 0) {
p += 1;
}
for (int k = j; k <= p; k++) {
L[i][k] = j;
R[i][k] = p;
}
j = p;
}
}
res = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (a[i][j] == 1) {
continue;
}
if (j == 0 || a[i][j - 1] == 1) {
rec(i, i, j, R[i][j], R[i][j] - j + 1);
}
}
}
return res;
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |