正题
题目大意:https://www.luogu.org/problem/P3531
题目大意
两个由相同字符组成的字符串,每次可以交换相邻的两个字符,求最少交换次数使这两个字符串相同。
解题思路
我们拿第二个字符在第一个字符串对应的位置作为值求逆序对数量即可。
注意的是两个相同的使,前面的对前面,后面的对后面。
codecodecode
#include<cstdio>
#include<cstring>
#include<algorithm>
#define lowbit(x) (x&-x)
#define ll long long
using namespace std;
const ll N=1e6+10;
ll n,local[27],last[N],num[N],t[N],ans;
char a[N],b[N];
void change(ll x,ll z)
{while(x<=n){t[x]+=z;x+=lowbit(x);}
}
ll ask(ll x)
{ll ans=0;while(x){ans+=t[x];x-=lowbit(x);}return ans;
}
int main()
{scanf("%lld",&n);scanf("%s",a+1);scanf("%s",b+1);for(ll i=1;i<=n;i++){last[i]=local[a[i]-'A'];local[a[i]-'A']=i;}for(ll i=n;i>=1;i--){num[i]=n-local[b[i]-'A']+1;local[b[i]-'A']=last[local[b[i]-'A']];}for(ll i=1;i<=n;i++){ans+=ask(num[i]);change(num[i],1);}printf("%lld",ans);
}