#include <bits/stdc++.h>
using namespace std;
template<class T, class U>
void ckmin(T &a, U b)
{
if (a > b) a = b;
}
template<class T, class U>
void ckmax(T &a, U b)
{
if (a < b) a = b;
}
#define MP make_pair
#define PB push_back
#define LB lower_bound
#define UB upper_bound
#define fi first
#define se second
#define FOR(i, a, b) for (auto i = (a); i < (b); i++)
#define FORD(i, a, b) for (auto i = (a) - 1; i >= (b); i--)
#define SZ(x) ((int) (x).size())
#define ALL(x) (x).begin(), (x).end()
const int MAXN = 5013;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef vector<pii> vpi;
typedef vector<pll> vpl;
int N;
int arr[MAXN], pref[MAXN];
int dp[MAXN][MAXN];
int ans;
int32_t main()
{
ios_base::sync_with_stdio(false); cin.tie(0);
cout << fixed << setprecision(12);
cerr << fixed << setprecision(4);
cin >> N;
FOR(i, 0, N)
{
cin >> arr[i];
pref[i + 1] = pref[i] + arr[i];
}
// dp[0][0] = 0;
FOR(i, 1, N + 1)
{
int iter = i - 1;
FOR(j, i, N + 1)
{
dp[i][j] = 0;
FOR(k, 1, i)
{
ckmax(dp[i][j], dp[k][i - 1]);
}
while(iter != 0 && pref[iter] > 2 * pref[i - 1] - pref[j])
{
iter--;
}
// cerr << "dp " << i << ' ' << j << " = " << dp[i][j] << endl;
if (pref[iter] == c)
{
//c(x, i-1) += 1 for all x <= idx.
// #warning check this
FOR(k, 1, iter + 1)
{
// cerr << "ADD " << k << ' ' << i - 1 << endl;
dp[k][i - 1]++;
}
}
//i...j. that means you use i-1....j-1.
//count how many s i-2...k = si-1...c
//pref[i-1] - pref[k] = pref[j] - pref[i - 1].
//pref[k] = 2 pref[i - 1] - pref[j]
//find dp[i][j].
//dp[i][j] = max(dp[i][j], dp[k][i - 1] + c(k, i, j))
//c(k, i, j) is # of positions l such that s[k] +
//there's always some poition
}
}
FOR(i, 1, N + 1)
{
ckmax(ans, dp[i][N]);
}
cout << ans << '\n';
return 0;
}
Compilation message
cigle.cpp: In function 'int32_t main()':
cigle.cpp:71:31: error: 'c' was not declared in this scope
71 | if (pref[iter] == c)
| ^