A14752 | Blue-Red Permutation
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given an array of integers $a$ of length $n$ . 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 $1$ ;
- or you can select any red element and increase its value by $1$ .
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 $0$ or more steps such that the resulting array is a permutation of numbers from $1$ to $n$ ?
In other words, check whether there exists a sequence of steps (possibly empty) such that after applying it, the array $a$ contains in some order all numbers from $1$ to $n$ (inclusive), each exactly once.
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 $1$ ;
- or you can select any red element and increase its value by $1$ .
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 $0$ or more steps such that the resulting array is a permutation of numbers from $1$ to $n$ ?
In other words, check whether there exists a sequence of steps (possibly empty) such that after applying it, the array $a$ contains in some order all numbers from $1$ to $n$ (inclusive), each exactly once.
输入格式
The first line contains an integer $t$ ( $1 \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 $n$ ( $1 \leq n \leq 2 \cdot 10^5$ ) — the length of the original array $a$ . The second line contains $n$ integers $a_1$ , $a_2$ , ..., $a_n$ ( $-10^9 \leq a_i \leq 10^9$ ) — the array elements themselves.
The third line has length $n$ and consists exclusively of the letters 'B' and/or 'R': $i$ th character is 'B' if $a_i$ is colored blue, and is 'R' if colored red.
It is guaranteed that the sum of $n$ over all input sets does not exceed $2 \cdot 10^5$ .
The description of each set of input data consists of three lines. The first line contains an integer $n$ ( $1 \leq n \leq 2 \cdot 10^5$ ) — the length of the original array $a$ . The second line contains $n$ integers $a_1$ , $a_2$ , ..., $a_n$ ( $-10^9 \leq a_i \leq 10^9$ ) — the array elements themselves.
The third line has length $n$ and consists exclusively of the letters 'B' and/or 'R': $i$ th character is 'B' if $a_i$ is colored blue, and is 'R' if colored red.
It is guaranteed that the sum of $n$ over all input sets does not exceed $2 \cdot 10^5$ .
输出格式
Print $t$ 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).
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=3$ , element $a_3=5$ is blue, so we decrease it, we get $a=[1,2,4,2]$ ;
- choose $i=2$ , element $a_2=2$ is red, so we increase it, we get $a=[1,3,4,2]$ ;
- choose $i=3$ , element $a_3=4$ is blue, so we decrease it, we get $a=[1,3,3,2]$ ;
- choose $i=2$ , element $a_2=2$ is red, so we increase it, we get $a=[1,4,3,2]$ .
We got that $a$ is a permutation. Hence the answer is YES.
- choose $i=3$ , element $a_3=5$ is blue, so we decrease it, we get $a=[1,2,4,2]$ ;
- choose $i=2$ , element $a_2=2$ is red, so we increase it, we get $a=[1,3,4,2]$ ;
- choose $i=3$ , element $a_3=4$ is blue, so we decrease it, we get $a=[1,3,3,2]$ ;
- choose $i=2$ , element $a_2=2$ is red, so we increase it, we get $a=[1,4,3,2]$ .
We got that $a$ is a permutation. Hence the answer is YES.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted