CF1332C.K-Complete Word

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Word ss of length nn is called kk -complete if

  • ss is a palindrome, i.e. si=sn+1is_i=s_{n+1-i} for all 1in1 \le i \le n ;
  • ss has a period of kk , i.e. si=sk+is_i=s_{k+i} for all 1ink1 \le i \le n-k .

For example, "abaaba" is a 33 -complete word, while "abccba" is not.

Bob is given a word ss of length nn consisting of only lowercase Latin letters and an integer kk , such that nn is divisible by kk . He wants to convert ss to any kk -complete word.

To do this Bob can choose some ii ( 1in1 \le i \le n ) and replace the letter at position ii with some other lowercase Latin letter.

So now Bob wants to know the minimum number of letters he has to replace to convert ss to any kk -complete word.

Note that Bob can do zero changes if the word ss is already kk -complete.

You are required to answer tt test cases independently.

输入格式

The first line contains a single integer tt ( 1t1051 \le t\le 10^5 ) — the number of test cases.

The first line of each test case contains two integers nn and kk ( 1k<n21051 \le k < n \le 2 \cdot 10^5 , nn is divisible by kk ).

The second line of each test case contains a word ss of length nn .

It is guaranteed that word ss only contains lowercase Latin letters. And it is guaranteed that the sum of nn over all test cases will not exceed 21052 \cdot 10^5 .

输出格式

For each test case, output one integer, representing the minimum number of characters he has to replace to convert ss to any kk -complete word.

输入输出样例

  • 输入#1

    4
    6 2
    abaaba
    6 3
    abaaba
    36 9
    hippopotomonstrosesquippedaliophobia
    21 7
    wudixiaoxingxingheclp

    输出#1

    2
    0
    23
    16

说明/提示

In the first test case, one optimal solution is aaaaaa.

In the second test case, the given word itself is kk -complete.

首页