CF1607D.Blue-Red Permutation

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given an array of integers aa of length nn . The elements of the array can be either different or the same.

Each element of the array is colored either blue or red. There are no unpainted elements in the array. One of the two operations described below can be applied to an array in a single step:

  • either you can select any blue element and decrease its value by 11 ;
  • or you can select any red element and increase its value by 11 .

Situations in which there are no elements of some color at all are also possible. For example, if the whole array is colored blue or red, one of the operations becomes unavailable.

Determine whether it is possible to make 00 or more steps such that the resulting array is a permutation of numbers from 11 to nn ?

In other words, check whether there exists a sequence of steps (possibly empty) such that after applying it, the array aa contains in some order all numbers from 11 to nn (inclusive), each exactly once.

输入格式

The first line contains an integer tt ( 1t1041 \leq t \leq 10^4 ) — the number of input data sets in the test.

The description of each set of input data consists of three lines. The first line contains an integer nn ( 1n21051 \leq n \leq 2 \cdot 10^5 ) — the length of the original array aa . The second line contains nn integers a1a_1 , a2a_2 , ..., ana_n ( 109ai109-10^9 \leq a_i \leq 10^9 ) — the array elements themselves.

The third line has length nn and consists exclusively of the letters 'B' and/or 'R': ii th character is 'B' if aia_i is colored blue, and is 'R' if colored red.

It is guaranteed that the sum of nn over all input sets does not exceed 21052 \cdot 10^5 .

输出格式

Print tt lines, each of which contains the answer to the corresponding test case of the input. Print YES as an answer if the corresponding array can be transformed into a permutation, and NO otherwise.

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

输入输出样例

  • 输入#1

    8
    4
    1 2 5 2
    BRBR
    2
    1 1
    BB
    5
    3 1 4 2 5
    RBRRB
    5
    3 1 3 1 3
    RBRRB
    5
    5 1 5 1 5
    RBRRB
    4
    2 2 2 2
    BRBR
    2
    1 -2
    BR
    4
    -2 -1 4 0
    RRRR

    输出#1

    YES
    NO
    YES
    YES
    NO
    YES
    YES
    YES

说明/提示

In the first test case of the example, the following sequence of moves can be performed:

  • choose i=3i=3 , element a3=5a_3=5 is blue, so we decrease it, we get a=[1,2,4,2]a=[1,2,4,2] ;
  • choose i=2i=2 , element a2=2a_2=2 is red, so we increase it, we get a=[1,3,4,2]a=[1,3,4,2] ;
  • choose i=3i=3 , element a3=4a_3=4 is blue, so we decrease it, we get a=[1,3,3,2]a=[1,3,3,2] ;
  • choose i=2i=2 , element a2=2a_2=2 is red, so we increase it, we get a=[1,4,3,2]a=[1,4,3,2] .

We got that aa is a permutation. Hence the answer is YES.

首页