이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
typedef long long ll;
using namespace std;
const int N = 5e5 + 10;
ll pref[N];
pair <ll, ll> dp[N];
int main() {
int n;
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> pref[i];
pref[i] += pref[i - 1];
}
dp[0] = { 0, 0 };
for (int i = 1; i <= n; i++) {
dp[i] = { dp[i - 1].first, dp[i - 1].second + pref[i] - pref[i - 1] };
for (int j = 0; j < i; j++) {
if (dp[j].second <= pref[i] - pref[j]) {
if (dp[j].first + 1 > dp[i].first || (dp[j].second < dp[i].second && dp[j].first + 1 == dp[i].first)) {
dp[i] = make_pair(dp[j].first + 1, pref[i] - pref[j]);
}
}
}
}
cout << dp[n].first << "\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... |