1582C - Grandma Capa Knits a Scarf
  bIizQVVwIKiD 2023年11月02日 22 0


https://codeforces.com/contest/1582/problem/C
#include<iostream>
#include<algorithm>
#include<bits/stdc++.h>
using namespace std;

const int N = 1e3 + 10;
typedef long long ll;


int f[N][N];


void solve() {
int n;
string s;
cin >> n >> s;
int ans = n + 1;
for (int c = 0; c < 26; c ++) {
int l = 0, r = n - 1;
int cnt = 0;
while(l <= r) {
if (s[l] == s[r]) {
l ++, r --;
}
else if (s[l] == char(c + 'a')) {
l ++;
cnt ++;
}
else if (s[r] == char(c + 'a')) {
r --;
cnt ++;
}
else {
cnt = n + 1;
break;
}
}
ans = min(ans, cnt);
}
if (ans == n + 1) ans = - 1;
cout << ans << endl;
}
int main () {
int t;
cin >> t;
while (t --) solve();
return 0;
}

因为最终只删除一个字母,而字母表只有26个,所以可以遍历所有删除的可能。然后取最小值


【版权声明】本文内容来自摩杜云社区用户原创、第三方投稿、转载,内容版权归原作者所有。本网站的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@moduyun.com

  1. 分享:
最后一次编辑于 2023年11月08日 0

暂无评论

推荐阅读
bIizQVVwIKiD
最新推荐 更多