CF1682A.Palindromic Indices
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a palindromic string s of length n .
You have to count the number of indices i (1≤i≤n) such that the string after removing si from s still remains a palindrome.
For example, consider s = "aba"
- If we remove s1 from s , the string becomes "ba" which is not a palindrome.
- If we remove s2 from s , the string becomes "aa" which is a palindrome.
- If we remove s3 from s , the string becomes "ab" which is not a palindrome.
A palindrome is a string that reads the same backward as forward. For example, "abba", "a", "fef" are palindromes whereas "codeforces", "acd", "xy" are not.
输入格式
The input consists of multiple test cases. The first line of the input contains a single integer t (1≤t≤103) — the number of test cases. Description of the test cases follows.
The first line of each testcase contains a single integer n (2≤n≤105) — the length of string s .
The second line of each test case contains a string s consisting of lowercase English letters. It is guaranteed that s is a palindrome.
It is guaranteed that sum of n over all test cases does not exceed 2⋅105 .
输出格式
For each test case, output a single integer — the number of indices i (1≤i≤n) such that the string after removing si from s still remains a palindrome.
输入输出样例
输入#1
3 3 aba 8 acaaaaca 2 dd
输出#1
1 4 2
说明/提示
The first test case is described in the statement.
In the second test case, the indices i that result in palindrome after removing si are 3,4,5,6 . Hence the answer is 4 .
In the third test case, removal of any of the indices results in "d" which is a palindrome. Hence the answer is 2 .