이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
#define ONLINE_JUDGE
void solve() {
int n;
cin >> n;
vector <int> a(2 * n +1);
for(int i = 1; i <= n; i++) {
cin >> a[i];
a[i + n] = a[i];
}
vector <int> pref = a;
for(int i = 1; i <= 2 * n; i++) {
pref[i] += pref[i -1];
}
auto get = [&](int x, int y) -> int {
return pref[x] - pref[y -1];
};
int ans = 0, sz = (n +1) / 2;
multiset <int> ms;
for(int i = 1; i <= 2 * n; i++) {
if(i + sz -1 <= 2 * n) {
ms.emplace(get(i + sz -1, i));
}
if(i - sz >= 1) {
ms.erase(ms.find(get(i, i - sz +1)));
}
cerr << i << ":\n";
for(const int &j : ms) {
cerr << j << " ";
}
cerr << "\n";
ans = max(ans, *ms.begin());
}
cout << ans;
return;
}
signed main() {
#ifndef ONLINE_JUDGE
freopen("in.txt", "r", stdin);
freopen("out.txt", "w", stdout);
#endif
ios_base::sync_with_stdio(false);
cin.tie(NULL); cout.tie(NULL);
int t = 1; //cin >> t;
for(int i = 1; i <= t; i++) {
solve();
}
return 0;
}
# | 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... |