이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 5e5 + 5;
int n;
long long pref[3 * MAXN], A[MAXN];
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n;
for(int i = 1; i <= n; i++)
{
cin >> A[i];
pref[i] = pref[i - 1] + A[i];
}
int hh = (n + 1) / 2;
for(int i = n + 1; i <= 2 * n; i++)
{
pref[i] = pref[i - 1] + A[i - n];
}
for(int i = 2 * n + 1; i <= 3 * n; i++)
{
pref[i] = pref[i - 1] + A[i - 2 * n];
}
long long ans = 0;
deque <pair <long long, int> > Pos;
for(int i = 1; i <= 2 * n; i++)
{
while(!Pos.empty() and Pos.front().second < i - hh + 1)
{
Pos.pop_front();
}
while(!Pos.empty() and Pos.back().first >= pref[i + hh - 1] - pref[i - 1])
{
Pos.pop_back();
}
Pos.push_back(make_pair(pref[i + hh - 1] - pref[i - 1], i));
if(i >= hh)
{
ans = max(ans, Pos.front().first);
}
}
cout << ans << '\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... |