0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-05 15:18:47 +00:00
OI-codes/Codeforces/1660/C/C.cpp

45 lines
882 B
C++
Raw Normal View History

2022-06-01 01:45:41 +00:00
#include <iostream>
#include <algorithm>
#include <cstring>
#include <string>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 2e5 + 5;
int t, ans, f[N][2], pre[N], last[N];
std::string s;
int main() {
std::ios::sync_with_stdio(false);
cin >> t;
while (t--) {
ans = 0;
memset(f, 0x00, sizeof(f));
memset(last, 0x00, sizeof(last));
cin >> s;
s = ' ' + s;
for (int i = 1; i < s.size(); i++) {
pre[i] = last[s[i] - 'a'];
last[s[i] - 'a'] = i;
}
for (int i = 1; i < s.size(); i++) {
f[i][0] = std::max(f[i - 1][0], f[i - 1][1]);
if (pre[i]) {
f[i][1] = f[pre[i]][0] + 2;
}
ans = std::max({ans, f[i][0], f[i][1]});
}
cout << s.size() - ans - 1 << endl;
}
return 0;
}