hihoCoder1052 基因工程
分析
可以找规律
拿样例说话
ATACGTCT k=6
则有AT=AC AC=GT GT=CT
所以AT=AC=GT=CT
所以要使满足条件,则原串应当是一个以长度为n-k组成的循环串
那么贪心地想一下 我们就需要统计一下这个串中每一个循环节对应的位置出现次数最多的字符出现次数 则需要改变的字符最少就是总数减去这个最大值
#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
#define MAXN 1005
char s[MAXN];
int K,N;
int main()
{
int T;
scanf("%d",&T);
while(T--)
{
int ans=0;
scanf("%s",s);
scanf("%d",&K);
N=strlen(s);
for(int i=0;i<N-K;i++)
{
int tot[4],t=0;
tot[0]=tot[1]=tot[2]=tot[3]=0;
for(int j=i;j<N;j+=N-K)
{
t++;
if(s[j]=='A') tot[0]++;
if(s[j]=='T') tot[1]++;
if(s[j]=='C') tot[2]++;
if(s[j]=='G') tot[3]++;
}
ans+=t-*max_element(tot,tot+4);
}
printf("%d\n",ans);
}
return 0;
}
转载请注明出处,有疑问欢迎探讨
博主邮箱 2775182058@qq.com