# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
824998 | QwertyPi | Hacker (BOI15_hac) | C++14 | 31 ms | 13192 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;
const int MAXN = 5e5 + 11;
const int LGN = 21;
unsigned int a[MAXN], s[MAXN * 3], b[MAXN * 2];
struct SparseTable{
int st[LGN][MAXN * 2];
void init(int n, unsigned int* a, int (*g)(int, int)){
f = g;
for(int i = 0; i < n; i++) st[0][i] = a[i];
for(int j = 1; j < LGN; j++){
for(int i = 0; i <= n - (1 << j); i++){
st[j][i] = f(st[j - 1][i], st[j - 1][i + (1 << j - 1)]);
}
}
}
int qry(int l, int r){
int d = __lg(r - l + 1);
return f(st[d][l], st[d][r - (1 << d) + 1]);
}
int (*f)(int, int);
} ST;
int32_t main(){
int n; cin >> n;
for(int i = 0; i < n; i++) cin >> a[i];
for(int i = 0; i < n; i++) a[i + n * 2] = a[i + n] = a[i];
for(int i = 0; i < n * 3; i++) s[i + 1] = s[i] + a[i];
for(int i = 0; i < n * 2; i++) b[i] = s[i + (n + 1) / 2] - s[i];
ST.init(n * 2, b, [](int a, int b){ return min(a, b); });
int ans = 0;
for(int i = 0; i < n; i++){
ans = max(ans, ST.qry(i, i + (n + 1) / 2 - 1));
}
cout << ans << endl;
}
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... |