이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define fast ios::sync_with_stdio(0);cin.tie(0);
#define s second
#define f first
typedef long long ll;
const ll MOD = 1e9 + 7;
const ll LOGN = 20;
const ll MAXN = 5005;
vector<int> A;
int dp[MAXN][MAXN];
int main() {
fast
int N;
cin >> N;
A = vector<int>(N);
for (int i = 0; i < N; i++)
cin >> A[i];
for (int l = 0; l <= N; l++) {
for (int l2 = 1; l2 < l; l2++)
dp[l2][l] = max(dp[l2][l], dp[l2-1][l]);
int bal = 0, match = 0, curr = 0, left_border = l;
for (int r = l+1; r <= N; r++) {
bal += A[r-1];
while (left_border > 0 && bal - A[left_border - 1] >= 0) {
bal -= A[left_border - 1];
left_border--;
}
dp[l][r] = max(dp[l][r-1], curr);
if (bal == 0) {
match++;
if (left_border)
curr = max(curr, dp[left_border - 1][l] + match);
}
}
}
cout << dp[N-1][N] << "\n";
}
# | 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... |