이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int main() {
int n, a[500003], ans;
cin >> n;
for (int i = 0; i < n; i++) {
cin >> a[i];
}
int cntTakenByPlayer = n/2 + n%2;
ans = 0;
for (int i = 0; i < n; i++) {
// i-th is player's first move
int minSum = 1000000000;
for (int prev = 0; prev < cntTakenByPlayer; prev++) {
int currSum = 0;
for (int j = (i - 1 + n)%n, cnt = 0; cnt < prev; j = (j - 1 + n)%n, cnt++) {
currSum += a[j];
}
for (int j = i, cnt = 0; cnt < cntTakenByPlayer - prev; j = (j + 1)%n, cnt++) {
currSum += a[j];
}
minSum = min(minSum, currSum);
}
ans = max(ans, minSum);
}
cout << ans << endl;
}
# | 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... |