A16101 | Queries for the Array
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Monocarp had an array $a$ consisting of integers. Initially, this array was empty.
Monocarp performed three types of queries to this array:
- choose an integer and append it to the end of the array. Each time Monocarp performed a query of this type, he wrote out a character +;
- remove the last element from the array. Each time Monocarp performed a query of this type, he wrote out a character -. Monocarp never performed this query on an empty array;
- check if the array is sorted in non-descending order, i.,e. $a_1 \le a_2 \le \dots \le a_k$ , where $k$ is the number of elements in the array currently. Every array with less than $2$ elements is considered sorted. If the array was sorted by the time Monocarp was performing that query, he wrote out a character 1. Otherwise, he wrote out a character 0.
You are given a sequence $s$ of $q$ characters 0, 1, + and/or -. These are the characters that were written out by Monocarp, given in the exact order he wrote them out.
You have to check if this sequence is consistent, i. e. it was possible for Monocarp to perform the queries so that the sequence of characters he wrote out is exactly $s$ .
Monocarp performed three types of queries to this array:
- choose an integer and append it to the end of the array. Each time Monocarp performed a query of this type, he wrote out a character +;
- remove the last element from the array. Each time Monocarp performed a query of this type, he wrote out a character -. Monocarp never performed this query on an empty array;
- check if the array is sorted in non-descending order, i.,e. $a_1 \le a_2 \le \dots \le a_k$ , where $k$ is the number of elements in the array currently. Every array with less than $2$ elements is considered sorted. If the array was sorted by the time Monocarp was performing that query, he wrote out a character 1. Otherwise, he wrote out a character 0.
You are given a sequence $s$ of $q$ characters 0, 1, + and/or -. These are the characters that were written out by Monocarp, given in the exact order he wrote them out.
You have to check if this sequence is consistent, i. e. it was possible for Monocarp to perform the queries so that the sequence of characters he wrote out is exactly $s$ .
输入格式
The first line of the input contains one integer $t$ ( $1 \le t \le 10^4$ ) — the number of test cases.
Each test case consists of one line containing the string $s$ ( $1 \le |s| \le 2 \cdot 10^5$ ). This string consists of characters 0, 1, + and/or -. This is the sequence of characters written by Monocarp, in the order he wrote them.
Additional constraints on the input:
- for every prefix of $s$ , the number of characters + on it is not less than the number of characters - on it. In other words, if Monocarp actually performed these queries, he would never try to remove the last element from the empty array;
- the sum of $|s|$ over all test cases does not exceed $2 \cdot 10^5$ .
Each test case consists of one line containing the string $s$ ( $1 \le |s| \le 2 \cdot 10^5$ ). This string consists of characters 0, 1, + and/or -. This is the sequence of characters written by Monocarp, in the order he wrote them.
Additional constraints on the input:
- for every prefix of $s$ , the number of characters + on it is not less than the number of characters - on it. In other words, if Monocarp actually performed these queries, he would never try to remove the last element from the empty array;
- the sum of $|s|$ over all test cases does not exceed $2 \cdot 10^5$ .
输出格式
For each test case, print YES if it was possible for Monocarp to perform the queries so that the sequence of characters he wrote is exactly $s$ . Otherwise, print NO.
You can print each letter in any register.
You can print each letter in any register.
输入输出样例
输入 #1
7 ++1 +++1--0 +0 0 ++0-+1-+0 ++0+-1+-0 +1-+0
输出 #1
YES NO NO NO YES NO NO
In the first test case, Monocarp could perform the following sequence of queries:
- add the integer $13$ ;
- add the integer $37$ ;
- check that the current array $[13, 37]$ is sorted in non-descending order (and it is sorted).
In the fifth test case, Monocarp could perform the following sequence of queries:
- add the integer $3$ ;
- add the integer $2$ ;
- check that the current array $[3, 2]$ is sorted (it is not);
- remove the last element;
- add the integer $3$ ;
- check that the current array $[3, 3]$ is sorted (it is);
- remove the last element;
- add the integer $-5$ ;
- check that the current array $[3, -5]$ is sorted (it is not).
In all other test cases of the example test, it is impossible for Monocarp to write the sequence $s$ when performing the queries according to the statement.
- add the integer $13$ ;
- add the integer $37$ ;
- check that the current array $[13, 37]$ is sorted in non-descending order (and it is sorted).
In the fifth test case, Monocarp could perform the following sequence of queries:
- add the integer $3$ ;
- add the integer $2$ ;
- check that the current array $[3, 2]$ is sorted (it is not);
- remove the last element;
- add the integer $3$ ;
- check that the current array $[3, 3]$ is sorted (it is);
- remove the last element;
- add the integer $-5$ ;
- check that the current array $[3, -5]$ is sorted (it is not).
In all other test cases of the example test, it is impossible for Monocarp to write the sequence $s$ when performing the queries according to the statement.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted