H - Genta Game

xiaoxiao2021-03-01  35

Statements

Kojima Genta is one of the best friends of Conan, and the fattest one!

Everyone believes that Genta is just thinking about food. So, he wants to prove the opposite. So, his friends challenged him in a game. Genta's friends will give him a string s of length n, and m update operations. At each update operation, an integer p (1 ≤ p ≤ n) and a lowercase English letter c will be given to Genta, and he is asked to change the pth letter in the string s to the letter c.

Conan explained to Genta that an update operation is said to be beautiful if the string s was a palindrome string after the update operation has been executed.

Genta task is to count the number of beautiful update operations. Genta wants to win in this game no matter what this will cost because his friends promised him that the food will be at their expense throughout the week if he solved the task. Can you help Genta by solving his task?

Input

The first line contains an integer T (1 ≤ T ≤ 50), in which T is the number of test cases.

The first line of each test cases contains two integers n and m (1 ≤ n, m ≤ 105), in which n is the length of the string s and m is the number of update operations. The second line of each test cases contains a string s of length n consisting of lowercase English letters only. Then m lines follow, each line contains an integer p and a lowercase English letter c (1 ≤ p ≤ n), giving the update operations.

The sum of n and m overall test cases does not exceed 7 × 105 for each.

Output

For each test case, print a single line containing the number of beautiful update operations.

Example

Input

1 10 7 abcdefdcba 5 x 6 x 4 d 2 d 3 y 8 y 9 d

Output

3

Note

A palindrome is a word, phrase, number, or other sequence of characters which reads the same backward as forward, such as "madam" or "racecar".

In the first test case, the string s will be updated as follow:

abcdefdcba  abcdxfdcba  abcdxxdcba abcdxxdcba  adcdxxdcba  adydxxdcba adydxxdyba  adydxxdyda.

There are 3 beautiful update operations, which are the 2rd, 3th, and 7th operations.

#include<bits/stdc++.h> using namespace std; int main() { int t; scanf("%d",&t); while(t--) { int n,m; char st[11000002]; scanf("%d%d",&n,&m); scanf("%s",st); st[n]='\0'; int len=strlen(st); int ans=0; int i,j; for(i=0,j=len-1;j>i; i++,j--) { if(st[i]!=st[j]) ans++; } int u; char ch; int sum=0; for(i=1; i<=m; i++) { scanf("%d",&u); getchar(); scanf("%c",&ch); char c=st[u-1]; st[u-1]=ch; if(st[u-1]==st[len-u]&&c!=st[len-u]&&(u-1)!=(len-u)) ans--; else if(st[u-1]!=st[len-u]&&c==st[len-u]) ans++; if(ans==0) sum++; } printf("%d\n",sum); } return 0; }

 

转载请注明原文地址: https://www.6miu.com/read-4550245.html

最新回复(0)