标签:lse 直接 name c++ code with als syn bit
给以一个字符串,让你重排列,使得回文子串的数目最多
对于一个回文串,在其中加入一些字符并不会使回文子串的个数增加,所以对于相同的字符一起输出即可,我是直接排序
#include<bits/stdc++.h>
using namespace std;
const int N=1e5+10;
char a[N];
int main(){
int n;
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
while(cin>>n){
cin>>a;
sort(a,a+n);
puts(a);
}
return 0;
}
标签:lse 直接 name c++ code with als syn bit
原文地址:https://www.cnblogs.com/mch5201314/p/9792614.html