이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define fs first
#define ss second
#define str string
#define all(a) a.begin(), a.end()
#define print(a) \
for (auto x : a) \
cout << x << ' '; \
cout << endl;
#define each(x, a) for (auto x : a)
void solve()
{
int n;
cin >> n;
vector<int> a(n);
for(int i = 0; i < n; i ++)
cin >> a[i];
vector<int> pre(n + 1);
for(int i = 0; i < n; i ++)
pre[i + 1] = pre[i] + a[i];
vector<int> dp(n + 1), sum(n + 1);
int x = 0;
for(int i = 0; i < n; i ++){
int l = x, r = i;
while(l < r){
int m = (l + r + 1) >> 1;
if(pre[i + 1] - pre[m] >= sum[m])
l = m;
else
r = m - 1;
}
dp[i + 1] = dp[l] + 1;
if(dp[i + 1] > dp[i])
x = l;
sum[i + 1] = pre[i + 1] - pre[l];
}
cout << dp[n];
}
signed main()
{
int t = 1;
// cin >> t;
while (t--)
{
solve();
cout << endl;
}
}
# | 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... |