其他分享
首页 > 其他分享> > luoguP3531 [POI2012]LIT-Letters

luoguP3531 [POI2012]LIT-Letters

作者:互联网

(https://www.luogu.org/problem/P3531)

注意编号

#include<cstdio>
#include<algorithm>
#include<cstring>
#include<vector>
#include<iostream>
using namespace std;
const int MAX = 1001001;

int n;
long long ans;
int p[MAX], num[MAX], t[MAX];
string a,b;
vector <int> v[27];

int add(int x, int k) {
    while(x <= n) {
        t[x] += k;
        x += x&(-x);
    }
}

int query(int x) {
    int res = 0;
    while(x) {
        res += t[x];
        x -= x&(-x);
    }
    return res;
}

int main() {
    scanf("%d",&n);
    cin>>a>>b;
    for(int i = 0; i < n; i++) v[b[i]-'A'+1].push_back(i+1);//对b编号
    for(int i = 0; i < n; i++) p[i+1] = v[a[i]-'A'+1][num[a[i]-'A'+1]++];//对a编号 
//  for(int i = 1; i <= n; i++) printf("%d ", p[i]);
//裸求逆序对(因为a中字母在b中的位置固定,对于相同的字母,一定是a中第一个位置的 放在 b中第一个位置, 第二个放第二个...)
    for(int i = 1; i <= n; i++) {
        add(p[i], 1);
        ans += (long long)i - query(p[i]);
    }
    printf("%lld\n",ans);
}

标签:POI2012,MAX,luoguP3531,++,LIT,int,num,编号,include
来源: https://www.cnblogs.com/tyner/p/11544039.html