https://codeforces.com/problemset/problem/1238/D
思路:
开始上来想着太多了..组合也不太行,尝试dp。然后需要判一个当前区间前的最小回文?发现其实不满足二分性质。估计就算满足dp也假了hhh。
考虑取反。计算不合法的子串数量
不合法子串只可能是形如 A+BBBB,B+AAAA,AAAA+B,BBBB+A 嗯..就这一段区域是要减去的。
因为再加任何的A或者B,都会使得相邻的两个A间是回文,相邻的B间是回文
#include<iostream>
#include<vector>
#include<queue>
#include<cstring>
#include<cmath>
#include<map>
#include<set>
#include<cstdio>
#include<algorithm>
#define debug(a) cout<<#a<<"="<<a<<endl;
using namespace std;
const int maxn=3e5+1000;
typedef long long LL;
inline LL read(){LL x=0,f=1;char ch=getchar(); while (!isdigit(ch)){if (ch=='-') f=-1;ch=getchar();}while (isdigit(ch)){x=x*10+ch-48;ch=getchar();}
return x*f;}
char a[maxn];
int main(void){
cin.tie(0);std::ios::sync_with_stdio(false);
LL n;cin>>n;
cin>>(a+1);
LL pre=1;
LL ans=0;
for(LL i=2;i<=n;i++){
if(a[i-1]!=a[i]){
ans+=(i-pre);
pre=i;
}
else if(pre!=1) ans++;
}
cout<<n*(n-1)/2-ans<<"\n";
return 0;
}