이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
using namespace std;
int main() {
ios::sync_with_stdio(0); cin.tie(0);
int N;
cin >> N;
vector<int> a(N);
long long s = 0;
for (int &v: a) {
cin >> v;
s += v;
}
if (N <= 5000) {
long long res = 0;
for (int i = 0; i < N; i++) {
long long window = 0;
int len = N / 2;
for (int j = i+1; j < i + len + 1; j++) window += a[j % N];
long long curr = s - window;
for (int r = i + len + 1; r % N != i; r++) {
window += a[r % N];
window -= a[(r - len) % N];
curr = min(curr, s - window);
}
res = max(res, curr);
}
cout << res;
return 0;
}
long long window = 0;
int len = N / 2;
for (int j = 1; j < len + 1; j++) window += a[j % N];
long long curr = s - window;
for (int r = len + 1; r % N != 0; r++) {
window += a[r % N];
window -= a[(r - len) % N];
curr = min(curr, s - window);
}
cout << curr;
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... |