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 = 1e5 + 25;
struct bit {
int tree[MAXN];
void add (int x) {
for (; x < MAXN; x += x & (-x)) tree[x]++;
}
int get (int x) {
int sum = 0; for (; x; x -= x & (-x)) sum += tree[x];
return sum;
}
} cur;
int n;
string s;
deque <int> occ[26];
int main () {
cin >> n >> s;
s = '0' + s;
for (int i = 1; i <= n; i++) occ[s[i] - 'a'].push_back(i);
long long cnt = 0;
for (int i = n + 1; i <= 2 * n; i++) {
int u = occ[s[i] - 'a'].front();
occ[s[i] - 'a'].pop_front();
cnt += cur.get(u); cur.add(u);
}
cout << n * (n - 1) / 2 - cnt << '\n';
}
/*aabcdffa
adaffacb
1,2,3,4,5,6,7,8
1,5,2,6,7,8,4,3*/
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |