A11665 | Picking Strings
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Alice has a string consisting of characters 'A', 'B' and 'C'. Bob can use the following transitions on any substring of our string in any order any number of times:
- A BC
- B AC
- C AB
- AAA  empty string
Note that a substring is one or more consecutive characters. For given queries, determine whether it is possible to obtain the target string from source.
- A BC
- B AC
- C AB
- AAA  empty string
Note that a substring is one or more consecutive characters. For given queries, determine whether it is possible to obtain the target string from source.
输入格式
The first line contains a string $S$ ( $1<=|S|<=10^{5}$ ). The second line contains a string $T$ ( $1<=|T|<=10^{5}$ ), each of these strings consists only of uppercase English letters 'A', 'B' and 'C'.
The third line contains the number of queries $Q$ ( $1<=Q<=10^{5}$ ).
The following $Q$ lines describe queries. The $i$ -th of these lines contains four space separated integers $a_{i}$ , $b_{i}$ , $c_{i}$ , $d_{i}$ . These represent the $i$ -th query: is it possible to create $T[c_{i}..d_{i}]$ from $S[a_{i}..b_{i}]$ by applying the above transitions finite amount of times?
Here, $U[x..y]$ is a substring of $U$ that begins at index $x$ (indexed from 1) and ends at index $y$ . In particular, $U[1..|U|]$ is the whole string $U$ .
It is guaranteed that $1<=a<=b<=|S|$ and $1<=c<=d<=|T|$ .
The third line contains the number of queries $Q$ ( $1<=Q<=10^{5}$ ).
The following $Q$ lines describe queries. The $i$ -th of these lines contains four space separated integers $a_{i}$ , $b_{i}$ , $c_{i}$ , $d_{i}$ . These represent the $i$ -th query: is it possible to create $T[c_{i}..d_{i}]$ from $S[a_{i}..b_{i}]$ by applying the above transitions finite amount of times?
Here, $U[x..y]$ is a substring of $U$ that begins at index $x$ (indexed from 1) and ends at index $y$ . In particular, $U[1..|U|]$ is the whole string $U$ .
It is guaranteed that $1<=a<=b<=|S|$ and $1<=c<=d<=|T|$ .
输出格式
Print a string of $Q$ characters, where the $i$ -th character is '1' if the answer to the $i$ -th query is positive, and '0' otherwise.
输入输出样例
输入 #1
AABCCBAAB ABCB 5 1 3 1 2 2 2 2 4 7 9 1 1 3 4 2 3 4 5 1 3
输出 #1
10011
In the first query we can achieve the result, for instance, by using transitions .
The third query asks for changing AAB to A — but in this case we are not able to get rid of the character 'B'.
The third query asks for changing AAB to A — but in this case we are not able to get rid of the character 'B'.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted