CF1744A.Number Replacement

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

An integer array a1,a2,,ana_1, a_2, \ldots, a_n is being transformed into an array of lowercase English letters using the following prodecure:

While there is at least one number in the array:

  • Choose any number xx from the array aa , and any letter of the English alphabet yy .
  • Replace all occurrences of number xx with the letter yy .

For example, if we initially had an array a=[2,3,2,4,1]a = [2, 3, 2, 4, 1] , then we could transform it the following way:

  • Choose the number 22 and the letter c. After that a=[c,3,c,4,1]a = [c, 3, c, 4, 1] .
  • Choose the number 33 and the letter a. After that a=[c,a,c,4,1]a = [c, a, c, 4, 1] .
  • Choose the number 44 and the letter t. After that a=[c,a,c,t,1]a = [c, a, c, t, 1] .
  • Choose the number 11 and the letter a. After that a=[c,a,c,t,a]a = [c, a, c, t, a] .

After the transformation all letters are united into a string, in our example we get the string "cacta".

Having the array aa and the string ss determine if the string ss could be got from the array aa after the described transformation?

输入格式

The first line contains a single integer tt (1t103(1 \leq t \leq 10^3 ) — the number of test cases.

Then the description of the test cases follows.

The first line of each test case contains a single integer nn ( 1n501 \leq n \leq 50 ) — the length of the array aa and the string ss .

The second line of each test case contains exactly nn integers: a1,a2,,ana_1, a_2, \ldots, a_n ( 1ai501 \leq a_i \leq 50 ) — the elements of the array aa .

The third line of each test case contains a string ss of length nn , consisting of lowercase English letters.

输出格式

For each test case, output "YES", if we can get the string ss from the array aa , and "NO" otherwise. You can output each letter in any case.

输入输出样例

  • 输入#1

    7
    5
    2 3 2 4 1
    cacta
    1
    50
    a
    2
    11 22
    ab
    4
    1 2 2 1
    aaab
    5
    1 2 3 2 1
    aaaaa
    6
    1 10 2 9 3 8
    azzfdb
    7
    1 2 3 4 1 1 2
    abababb

    输出#1

    YES
    YES
    YES
    NO
    YES
    YES
    NO

说明/提示

The first test case corresponds to the sample described in the statement.

In the second test case we can choose the number 5050 and the letter a.

In the third test case we can choose the number 1111 and the letter a, after that a=[a,22]a = [a, 22] . Then we choose the number 2222 and the letter b and get a=[a,b]a = [a, b] .

In the fifth test case we can change all numbers one by one to the letter a.

首页