# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1006399 | devariaota | Bigger segments (IZhO19_segments) | C++17 | 63 ms | 18852 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
#define ll long long
using namespace std;
ll dp[500005], pos[500005], pref[500005], a[500005];
int main()
{
ll n;
scanf("%lld", &n);
for(int i=1; i<=n; i++)
{
scanf("%lld", &a[i]);
pref[i]=pref[i-1]+a[i];
}
pref[n+1]=1e18;
for(int i=1; i<=n; i++)
{
pos[i]=max(pos[i], pos[i-1]);
dp[i]=dp[pos[i]]+1;
ll pt=lower_bound(pref+1, pref+n+1, 2*pref[i]-pref[pos[i]])-pref;
// printf("pos=%lld %lld %lld\n", pos[i], pt, dp[i]);
pos[pt]=i;
}
printf("%lld\n", dp[n]);
}
Compilation message (stderr)
# | 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... |