시간 제한메모리 제한제출정답맞힌 사람정답 비율
서브태스크 참고 (추가 시간 없음) 1024 MB (추가 메모리 없음)21112611457.576%

문제

Charles defines the goodness score of a string as the number of indices i such that Si ≠ SN−i+1 where 1 ≤ i ≤ N/2 (1-indexed). For example, the string CABABC has a goodness score of 2 since S2 ≠ S5 and S3 ≠ S4.

Charles gave Ada a string S of length N, consisting of uppercase letters and asked her to convert it into a string with a goodness score of K. In one operation, Ada can change any character in the string to any uppercase letter. Could you help Ada find the minimum number of operations required to transform the given string into a string with goodness score equal to K?

입력

The first line of the input gives the number of test cases, T. T test cases follow.

The first line of each test case contains two integers N and K. The second line of each test case contains a string S of length N, consisting of uppercase letters.

출력

For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is the minimum number of operations required to transform the given string S into a string with goodness score equal to K.

제한

  • 1 ≤ T ≤ 100.
  • 0 ≤ K ≤ N/2.

Test Set 1 (5점)

시간 제한: 20 초

  • 1 ≤ N ≤ 100.

Test Set 2 (7점)

시간 제한: 40 초

  • 1 ≤ N ≤ 2×105 for at most 10 test cases.
  • For the remaining cases, 1 ≤ N ≤ 100.

예제 입력 1

2
5 1
ABCAA
4 2
ABAA

예제 출력 1

Case #1: 0
Case #2: 1

힌트

In Sample Case #1, the given string already has a goodness score of 1. Therefore the minimum number of operations required is 0.

In Sample Case #2, one option is to change the character at index 1 to B in order to have a goodness score of 2. Therefore, the minimum number of operations required is 1.

채점 및 기타 정보

  • 예제는 채점하지 않는다.