# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
153911 | mhy908 | 도넛 (JOI14_ho_t3) | C++14 | 161 ms | 2940 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>
using namespace std;
typedef long long LL;
int n;
LL arr[200010], ans;
LL f(int stnum, int st, int fin)
{
if(st==fin)return arr[st]-arr[stnum];
LL mid=(st+fin)/2+1;
LL l=arr[mid]-arr[stnum];
int next=lower_bound(arr+mid+1, arr+stnum+n, l+arr[mid])-arr;
if(arr[stnum+n]-arr[next]>=l)return f(stnum, mid, fin);
return f(stnum, st, mid-1);
}
bool ch(int stnum)
{
LL l=arr[stnum+1]-arr[stnum];
int next=lower_bound(arr+stnum+2, arr+stnum+n, l+arr[stnum+1])-arr;
if(arr[stnum+n]-arr[next]>=l)return true;
return false;
}
int main()
{
scanf("%d", &n);
for(int i=1; i<=n; i++){
LL temp;
scanf("%lld", &temp);
arr[i]=arr[i-1]+temp;
}
for(int i=1; i<=n; i++)
arr[i+n]=arr[i]+arr[n];
for(int i=0; i<n; i++)
if(ch(i))ans=max(ans, f(i, i+1, i+n-1));
printf("%lld", ans);
}
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... |