题目传送
题意:
给你一个字符串,现在有俩种操作,一种是字符串所有位都向左平移一个单位,另一种是向右平移一个单位,现在要使得这个字符串俩种操作后的字符串还是相等的,问最少改动多少个字符?
思路:
既然要平移后的字符串还是完全相等的,那么可以得到:
s[i-1] == s[i+1] (向右平移的和向左平移的),那么再推一下就可以得到只有俩种字符串是可以的:
1111111 或者 2525252525(这种只能是偶数)
那么由于是只有0到9的数字组成,那么当然也就20种情况,暴力跑一下就可以了
AC代码
#include <bits/stdc++.h>
inline long long read(){char c = getchar();long long x = 0,s = 1;
while(c < '0' || c > '9') {if(c == '-') s = -1;c = getchar();}
while(c >= '0' && c <= '9') {x = x*10 + c -'0';c = getchar();}
return x*s;}
using namespace std;
#define NewNode (TreeNode *)malloc(sizeof(TreeNode))
#define Mem(a,b) memset(a,b,sizeof(a))
#define lowbit(x) (x)&(-x)
const int N = 2e5 + 5;
const long long INFINF = 0x7f7f7f7f7f7f7f;
const int INF = 0x3f3f3f3f;
const double EPS = 1e-7;
const int mod = 1e9 + 7;
const double II = acos(-1);
const double PP = (II*1.0)/(180.00);
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> pii;
typedef pair<ll,ll> piil;
signed main()
{
std::ios::sync_with_stdio(false);
cin.tie(0);cout.tie(0);
// freopen("input.txt","r",stdin);
// freopen("output.txt","w",stdout);
int t;
cin >> t;
while(t--)
{
string s;
cin >> s;
int Min = INF,len = s.size();
for(int i = 0;i < 10;i++)
{
for(int j = 0;j < 10;j++)
{
int num = 0,x = 0,y = 0;
for(int k = 0;k < len;k++)
{
if(!x && s[k]-'0' == i)
num++,x = 1;
else if(x && !y && s[k]-'0' == j)
num++,y = 1;
if(x && y)
x = 0,y = 0;
}
if(i != j && num % 2 != 0) num--;//判断是哪种情况
Min = min(Min,len-num);//更新改动的最少次数
}
}
cout << Min << endl;
}
}