#include <bits/stdc++.h>
using namespace std;
using ll = long long;
ll N;
ll A[100005];
ll B[100005];
ll C[100005];
struct BIT{
ll T[300015] = {};
void update(ll k, ll v){while(k <= 300010) T[k] += v, k += k & -k;}
ll sum(ll k){ll r = 0;while(k >= 1) r += T[k], k -= k & -k; return r;}
ll query(ll l, ll r) {return sum(r) - sum(l - 1);}
};
BIT pfs, pfc, sfs, sfc;
vector<ll> V;
const ll INF = 1e10;
ll Idx1(ll k){
return lower_bound(V.begin(), V.end(), k) - V.begin();
}
ll Idx2(ll k){
return upper_bound(V.begin(), V.end(), k) - V.begin() - 1;
}
ll f(ll X, ll K){
ll r = 0;
K -= X;
r += K * pfc.query(Idx1(-INF), Idx2(K)) - pfs.query(Idx1(-INF), Idx2(K));
r += pfs.query(Idx1(K + 1), Idx2(INF)) - K * pfc.query(Idx1(K + 1), Idx2(INF));
K += 2 * X;
r += K * sfc.query(Idx1(-INF), Idx2(K)) - sfs.query(Idx1(-INF), Idx2(K));
r += sfs.query(Idx1(K + 1), Idx2(INF)) - K * sfc.query(Idx1(K + 1), Idx2(INF));
return r;
}
int main(){
cin.tie(0) -> sync_with_stdio(false);
V.push_back(-INF - 1);
V.push_back(-INF);
V.push_back(INF);
cin >> N;
for(ll i = 1; i <= N; i++){
cin >> A[i];
B[i] = A[i] + i;
C[i] = A[i] - i;
V.push_back(A[i]); V.push_back(B[i]); V.push_back(C[i]);
}
sort(V.begin(), V.end());
V.erase(unique(V.begin(), V.end()), V.end());
ll ans = 1e18;
for(ll i = 1; i <= N; i++){
sfs.update(Idx1(B[i]), B[i]);
sfc.update(Idx1(B[i]), 1);
}
for(ll i = 1; i <= N; i++){
pfs.update(Idx1(C[i]), C[i]);
pfc.update(Idx1(C[i]), 1);
sfs.update(Idx1(B[i]), -B[i]);
sfc.update(Idx1(B[i]), -1);
ll L = 0, R = 2e9;
while(R - L > 5){
ll p = (L + R) / 2, q = p + 1;
if(f(i, p) <= f(i, q)) R = q;
else L = p;
}
L = max(L, i);
L = max(L, N + 1 - i);
for(ll j = L; j <= R; j++){
ans = min(ans, f(i, j));
}
}
cout << ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
12 ms |
596 KB |
Output is correct |
2 |
Correct |
15 ms |
672 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
12 ms |
636 KB |
Output is correct |
2 |
Correct |
14 ms |
676 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
19 ms |
736 KB |
Output is correct |
2 |
Correct |
22 ms |
740 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
24 ms |
852 KB |
Output is correct |
2 |
Correct |
38 ms |
744 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
38 ms |
860 KB |
Output is correct |
2 |
Correct |
33 ms |
724 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
64 ms |
1280 KB |
Output is correct |
2 |
Correct |
78 ms |
996 KB |
Output is correct |
3 |
Correct |
37 ms |
812 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
482 ms |
3376 KB |
Output is correct |
2 |
Correct |
424 ms |
2632 KB |
Output is correct |
3 |
Correct |
451 ms |
3472 KB |
Output is correct |
4 |
Correct |
622 ms |
4148 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
815 ms |
4812 KB |
Output is correct |
2 |
Correct |
828 ms |
5608 KB |
Output is correct |
3 |
Correct |
600 ms |
5960 KB |
Output is correct |
4 |
Correct |
646 ms |
5612 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1315 ms |
5896 KB |
Output is correct |
2 |
Correct |
1250 ms |
9884 KB |
Output is correct |
3 |
Correct |
692 ms |
4592 KB |
Output is correct |
4 |
Execution timed out |
1564 ms |
8804 KB |
Time limit exceeded |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1563 ms |
14528 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |