s sconsisting of n "> n ncharacters, each character is ‘ R‘, ‘ G‘ or ‘ B‘. You are also given an integer k "> k k. Your tas" />

当前位置 : 主页 > 网页制作 > css >

D1. RGB Substring (easy version) ( Codeforces Round #575 )

来源:互联网 收集:自由互联 发布时间:2021-06-13
The only difference between easy and hard versions is the size of the input. You are given a string s "> s sconsisting of n "> n ncharacters, each character is ‘ R‘, ‘ G‘ or ‘ B‘. You are also given an integer k "> k k. Your tas

The only difference between easy and hard versions is the size of the input.

You are given a string ss consisting of nn characters, each character is ‘R‘, ‘G‘ or ‘B‘.

You are also given an integer kk. Your task is to change the minimum number of characters in the initial string ss so that after the changes there will be a string of length kk that is a substring of ss, and is also a substring of the infinite string "RGBRGBRGB ...".

A string aa is a substring of string bb if there exists a positive integer ii such that a1=bia1=bi, a2=bi+1a2=bi+1, a3=bi+2a3=bi+2, ..., a|a|=bi+|a|1a|a|=bi+|a|−1. For example, strings "GBRG", "B", "BR" are substrings of the infinite string "RGBRGBRGB ..." while "GR", "RGR" and "GGG" are not.

You have to answer qq independent queries.

Input

The first line of the input contains one integer qq (1q20001≤q≤2000) — the number of queries. Then qq queries follow.

The first line of the query contains two integers nn and kk (1kn20001≤k≤n≤2000) — the length of the string ss and the length of the substring.

The second line of the query contains a string ss consisting of nn characters ‘R‘, ‘G‘ and ‘B‘.

It is guaranteed that the sum of nn over all queries does not exceed 20002000 (n2000∑n≤2000).

Output

For each query print one integer — the minimum number of characters you need to change in the initial string ss so that after changing there will be a substring of length kk in ss that is also a substring of the infinite string "RGBRGBRGB ...".

Example input Copy
3
5 2
BGGGG
5 3
RBRGR
5 5
BBBRR
output Copy
1
0
3
Note

In the first example, you can change the first character to ‘R‘ and obtain the substring "RG", or change the second character to ‘R‘ and obtain "BR", or change the third, fourth or fifth character to ‘B‘ and obtain "GB".

In the second example, the substring is "BRG".

 

#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
#define INF 0x3f3f3f3f
#define N 500005
char str[N];
char t[N];
int a[N],sum[N];
int main()
{
    int q;
    scanf("%d",&q);
    while(q--)
    {
 
        int n,k;
        scanf("%d%d",&n,&k);
        scanf("%s",str+1);
 
        for(int i=1;i<=n+100;i+=3)
        {
            t[i]=R;
            t[i+1]=G;
            t[i+2]=B;
        }
        int ans=1e18;
        for(int j=1;j<=3;j++)
        {
            for(int i=1;i<=n;i++)
            {
                if(t[i+j-1]!=str[i])
                    a[i]=1;
                else
                    a[i]=0;
            }
            for(int i=1;i<=n;i++)
            {
                sum[i]=sum[i-1]+a[i];
            }
 
            for(int i=k;i<=n;i++)
            {
                ans=min(ans,sum[i]-sum[i-k]);
            }
        }
        cout<<ans<<endl;
 
 
    }
    return 0;
}
网友评论