This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "soccer.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int N = 2020;
int n;
int f[N][N], qs[N][N];
int l[N], r[N];
int mx;
int l1[N][N], r1[N][N];
int L1[N], R1[N];
int dp[N][N], L[N][N], R[N][N];
int inter(int l1, int r1, int l2, int r2) {
if (l1 > l2) {
swap(l1, l2);
swap(r1, r2);
}
// l1 <= l2
if (r2 <= r1) return r2 - l2 + 1;
if (r1 < l2) return 0;
return r1 - l2 + 1;
}
int biggest_stadium(int NN, vector<vector<int>> F) {
n = NN;
for (int i = 1;i <= n;i++) {
f[0][i] = f[n + 1][i] = f[i][0] = f[i][n + 1] = 1;
for (int j = 1;j <= n;j++) {
f[i][j] = F[i - 1][j - 1];
qs[i][j] = qs[i][j - 1] + f[i][j];
}
}
for (int i = 1;i <= n;i++) {
for (int j = 0;j <= n;j++) {
if (f[i][j] == 1) l1[i][j] = j + 1;
else l1[i][j] = l1[i][j - 1];
}
for (int j = n + 1;j >= 1;j--) {
if (f[i][j] == 1) r1[i][j] = j - 1;
else r1[i][j] = r1[i][j + 1];
}
}
mx = 0;
for (int c = 1;c <= n;c++) {
for (int i = 1;i <= n;i++) {
if (f[i][c]) dp[i][i] = -1e9, L[i][i] = L1[i] = -1, R[i][i] = R1[i] = -2;
else {
L1[i] = l1[i][c], R1[i] = r1[i][c];
dp[i][i] = R1[i] - L1[i] + 1, L[i][i] = L1[i], R[i][i] = R1[i];
mx = max(mx, dp[i][i]);
}
}
for (int k = 1;k < n;k++) {
for (int i = 1;i <= n - k;i++) {
int j = i + k;
L[i][j] = max(L[i + 1][j], L1[i]), R[i][j] = min(R[i + 1][j], R1[i]);
dp[i][j] = -1e9;
if (inter(L[i + 1][j], R[i + 1][j], L1[i], R1[i]) != 0) {
dp[i][j] = max(dp[i][j], dp[i + 1][j] + inter(L[i + 1][j], R[i + 1][j], L1[i], R1[i]));
}
if (inter(L[i][j - 1], R[i][j - 1], L1[j], R1[j]) != 0) {
dp[i][j] = max(dp[i][j], dp[i][j - 1] + inter(L[i][j - 1], R[i][j - 1], L1[j], R1[j]));
}
mx = max(mx, dp[i][j]);
}
}
}
return mx;
}
# | 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... |