#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int n, arr[303030];
vector<int> com;
int tree[1010101];
ll ans, cnt1[303030], cnt2[303030];
void init(int v, int st, int ed) {
if (st == ed) {
tree[v] = 0;
return;
}
int mid = (st + ed) / 2;
init(2 * v, st, mid);
init(2 * v + 1, mid + 1, ed);
tree[v] = tree[2 * v] + tree[2 * v + 1];
}
void update(int v, int st, int ed, int idx, int val) {
if (st == idx && ed == idx) {
tree[v] += val;
return;
}
if (idx < st || idx > ed) return;
int mid = (st + ed) / 2;
update(2 * v, st, mid, idx, val);
update(2 * v + 1, mid + 1, ed, idx, val);
tree[v] = tree[2 * v] + tree[2 * v + 1];
}
int get(int v, int st, int ed, int lt, int rt) {
if (st > rt || ed < lt) return 0;
if (lt <= st && ed <= rt) return tree[v];
int mid = (st + ed) / 2;
return get(2 * v, st, mid, lt, rt) + get(2 * v + 1, mid + 1, ed, lt, rt);
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cin >> n;
for (int i = 1; i <= n; i++) cin >> arr[i];
for (int i = 1; i <= n; i++) com.push_back(arr[i]);
sort(com.begin(), com.end());
com.erase(unique(com.begin(), com.end()), com.end());
for (int i = 1; i <= n; i++) {
arr[i] = lower_bound(com.begin(), com.end(), arr[i]) - com.begin();
}
init(1, 0, com.size() - 1);
for (int i = 1; i <= n; i++) {
cnt1[i] = get(1, 0, com.size() - 1, arr[i] + 1, com.size() - 1);
update(1, 0, com.size() - 1, arr[i], 1);
}
init(1, 0, com.size() - 1);
for (int i = n; i >= 1; i--) {
cnt2[i] = get(1, 0, com.size() - 1, arr[i] + 1, com.size() - 1);
update(1, 0, com.size() - 1, arr[i], 1);
}
for (int i = 1; i <= n; i++) {
ans += min(cnt1[i], cnt2[i]);
}
cout << ans << "\n";
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Output is correct |
2 |
Correct |
1 ms |
340 KB |
Output is correct |
3 |
Correct |
0 ms |
340 KB |
Output is correct |
4 |
Correct |
0 ms |
340 KB |
Output is correct |
5 |
Correct |
1 ms |
340 KB |
Output is correct |
6 |
Correct |
0 ms |
332 KB |
Output is correct |
7 |
Correct |
1 ms |
340 KB |
Output is correct |
8 |
Correct |
0 ms |
340 KB |
Output is correct |
9 |
Correct |
0 ms |
340 KB |
Output is correct |
10 |
Correct |
0 ms |
340 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
2 |
Correct |
1 ms |
340 KB |
Output is correct |
3 |
Correct |
1 ms |
340 KB |
Output is correct |
4 |
Correct |
1 ms |
332 KB |
Output is correct |
5 |
Correct |
1 ms |
340 KB |
Output is correct |
6 |
Correct |
1 ms |
340 KB |
Output is correct |
7 |
Correct |
1 ms |
340 KB |
Output is correct |
8 |
Correct |
1 ms |
340 KB |
Output is correct |
9 |
Correct |
1 ms |
340 KB |
Output is correct |
10 |
Correct |
1 ms |
332 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Output is correct |
2 |
Correct |
1 ms |
340 KB |
Output is correct |
3 |
Correct |
2 ms |
340 KB |
Output is correct |
4 |
Correct |
3 ms |
468 KB |
Output is correct |
5 |
Correct |
3 ms |
604 KB |
Output is correct |
6 |
Correct |
2 ms |
468 KB |
Output is correct |
7 |
Correct |
2 ms |
468 KB |
Output is correct |
8 |
Correct |
3 ms |
580 KB |
Output is correct |
9 |
Correct |
3 ms |
492 KB |
Output is correct |
10 |
Correct |
3 ms |
596 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
23 ms |
2064 KB |
Output is correct |
2 |
Correct |
84 ms |
4716 KB |
Output is correct |
3 |
Correct |
125 ms |
6104 KB |
Output is correct |
4 |
Correct |
167 ms |
9096 KB |
Output is correct |
5 |
Correct |
125 ms |
9400 KB |
Output is correct |
6 |
Correct |
62 ms |
4780 KB |
Output is correct |
7 |
Correct |
38 ms |
8012 KB |
Output is correct |
8 |
Incorrect |
207 ms |
14292 KB |
Output isn't correct |
9 |
Halted |
0 ms |
0 KB |
- |