测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A15807. Find and Replace

编程题 普及/提高-
知识点

题目描述

You are given a string $s$ consisting of lowercase Latin characters. In an operation, you can take a character and replace all occurrences of this character with $\texttt{0}$ or replace all occurrences of this character with $\texttt{1}$ .

Is it possible to perform some number of moves so that the resulting string is an alternating binary string $^{\dagger}$ ?

For example, consider the string $\texttt{abacaba}$ . You can perform the following moves:

- Replace $\texttt{a}$ with $\texttt{0}$ . Now the string is $\color{red}{\texttt{0}}\texttt{b}\color{red}{\texttt{0}}\texttt{c}\color{red}{\texttt{0}}\texttt{b}\color{red}{\texttt{0}}$ .
- Replace $\texttt{b}$ with $\texttt{1}$ . Now the string is ${\texttt{0}}\color{red}{\texttt{1}}{\texttt{0}}\texttt{c}{\texttt{0}}\color{red}{\texttt{1}}{\texttt{0}}$ .
- Replace $\texttt{c}$ with $\texttt{1}$ . Now the string is ${\texttt{0}}{\texttt{1}}{\texttt{0}}\color{red}{\texttt{1}}{\texttt{0}}{\texttt{1}}{\texttt{0}}$ . This is an alternating binary string.

$^{\dagger}$ An alternating binary string is a string of $\texttt{0}$ s and $\texttt{1}$ s such that no two adjacent bits are equal. For example, $\texttt{01010101}$ , $\texttt{101}$ , $\texttt{1}$ are alternating binary strings, but $\texttt{0110}$ , $\texttt{0a0a0}$ , $\texttt{10100}$ are not.

输入格式

The input consists of multiple test cases. The first line contains an integer $t$ ( $1 \leq t \leq 100$ ) — the number of test cases. The description of the test cases follows.

The first line of each test case contains an integer $n$ ( $1 \leq n \leq 2000$ ) — the length of the string $s$ .

The second line of each test case contains a string consisting of $n$ lowercase Latin characters — the string $s$ .

输出格式

For each test case, output "YES" (without quotes) if you can make the string into an alternating binary string, and "NO" (without quotes) otherwise.

You can output the answer in any case (for example, the strings "yEs", "yes", "Yes" and "YES" will be recognized as a positive answer).

输入输出样例

输入 #1
8
7
abacaba
2
aa
1
y
4
bkpt
6
ninfia
6
banana
10
codeforces
8
testcase
输出 #1
YES
NO
YES
YES
NO
YES
NO
NO

说明/提示

The first test case is explained in the statement.

In the second test case, the only possible binary strings you can make are $\texttt{00}$ and $\texttt{11}$ , neither of which are alternating.

In the third test case, you can make $\texttt{1}$ , which is an alternating binary string.
上一题 去做题 下一题