CF1927A.Make it White
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You have a horizontal strip of n cells. Each cell is either white or black.
You can choose a continuous segment of cells once and paint them all white. After this action, all the black cells in this segment will become white, and the white ones will remain white.
What is the minimum length of the segment that needs to be painted white in order for all n cells to become white?
输入格式
The first line of the input contains a single integer t ( 1≤t≤104 ) — the number of test cases. The descriptions of the test cases follow.
The first line of each test case contains a single integer n ( 1≤n≤10 ) — the length of the strip.
The second line of each test case contains a string s , consisting of n characters, each of which is either 'W' or 'B'. The symbol 'W' denotes a white cell, and 'B' — a black one. It is guaranteed that at least one cell of the given strip is black.
输出格式
For each test case, output a single number — the minimum length of a continuous segment of cells that needs to be painted white in order for the entire strip to become white.
输入输出样例
输入#1
8 6 WBBWBW 1 B 2 WB 3 BBW 4 BWWB 6 BWBWWB 6 WWBBWB 9 WBWBWWWBW
输出#1
4 1 1 2 4 6 4 7
说明/提示
In the first test case of the example for the strip "WBBWBW", the minimum length of the segment to be repainted white is 4 . It is necessary to repaint to white the segment from the 2 -nd to the 5 -th cell (the cells are numbered from 1 from left to right).