이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define sz(v) (int)(v).size()
#define all(v) (v).begin(), (v).end()
#define ff first
#define ss second
#define pii pair<int, int>
#define all(v) (v).begin(), (v).end()
int main() {
ios::sync_with_stdio(false); cin.tie(nullptr);
int n;
cin >> n;
vector<int> a(n);
for (auto &i : a)
cin >> i;
vector<ll> p(n);
for (int i = 0; i < n; i++)
p[i] = (i ? p[i - 1] : 0) + a[i];
vector<ll> dp = p;
for (int i = 1; i < n; i++) {
vector<ll> u(sz(dp));
for (int j = 0; j < sz(dp); j++)
u[j] = dp[j] + p[j];
// cout << "\ni " << i << endl;
// for (auto j : u)
// cout << j << ' ';
// cout << endl;
// for (auto j : u)
// cout << j << ' ';
// cout << endl;
assert(is_sorted(all(u)));
for (int j = sz(dp) - 1; j >= 0; j--) {
dp[j] = (ll)1e18;
// if (p[j] < u[0]) continue;
// int t = upper_bound(u.begin(), u.begin() + j, p[j]) - u.begin() - 1;
// dp[j] = p[j] - p[t];
// cout << "\nj " << j << ' ' << t << ' ' << p[t] << ' ' << p[j] << ' ' << p[j] - p[t] << endl;
ll sm = 0;
for (int k = j; k > 0; k--) {
sm += a[k];
if (dp[k - 1] <= p[j] - p[k - 1]) {
// cout << "k " << k << ' ' << sm << endl;
dp[j] = sm; break;
}
}
}
while (!dp.empty() && dp[0] == (ll)1e18) {
dp.erase(dp.begin());
p.erase(p.begin());
}
if (dp.empty()) return cout << i, 0;
}
cout << 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... |