A13909 | Non-Substring Subsequence
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Hr0d1y has $q$ queries on a binary string $s$ of length $n$ . A binary string is a string containing only characters '0' and '1'.
A query is described by a pair of integers $l_i$ , $r_i$ $(1 \leq l_i \lt r_i \leq n)$ .
For each query, he has to determine whether there exists a good subsequence in $s$ that is equal to the substring $s[l_i\ldots r_i]$ .
- A substring $s[i\ldots j]$ of a string $s$ is the string formed by characters $s_i s_{i+1} \ldots s_j$ .
- String $a$ is said to be a subsequence of string $b$ if $a$ can be obtained from $b$ by deleting some characters without changing the order of the remaining characters.
- A subsequence is said to be good if it is not contiguous and has length $\ge 2$ . For example, if $s$ is "1100110", then the subsequences $s_1s_2s_4$ ("1100110") and $s_1s_5s_7$ ("1100110") are good, while $s_1s_2s_3$ ("1100110") is not good.
Can you help Hr0d1y answer each query?
A query is described by a pair of integers $l_i$ , $r_i$ $(1 \leq l_i \lt r_i \leq n)$ .
For each query, he has to determine whether there exists a good subsequence in $s$ that is equal to the substring $s[l_i\ldots r_i]$ .
- A substring $s[i\ldots j]$ of a string $s$ is the string formed by characters $s_i s_{i+1} \ldots s_j$ .
- String $a$ is said to be a subsequence of string $b$ if $a$ can be obtained from $b$ by deleting some characters without changing the order of the remaining characters.
- A subsequence is said to be good if it is not contiguous and has length $\ge 2$ . For example, if $s$ is "1100110", then the subsequences $s_1s_2s_4$ ("1100110") and $s_1s_5s_7$ ("1100110") are good, while $s_1s_2s_3$ ("1100110") is not good.
Can you help Hr0d1y answer each query?
输入格式
The first line of the input contains a single integer $t$ ( $1\leq t \leq 100$ ) — the number of test cases. The description of each test case is as follows.
The first line contains two integers $n$ ( $2 \leq n \leq 100$ ) and $q$ ( $1\leq q \leq 100$ ) — the length of the string and the number of queries.
The second line contains the string $s$ .
The $i$ -th of the next $q$ lines contains two integers $l_i$ and $r_i$ ( $1 \leq l_i \lt r_i \leq n$ ).
The first line contains two integers $n$ ( $2 \leq n \leq 100$ ) and $q$ ( $1\leq q \leq 100$ ) — the length of the string and the number of queries.
The second line contains the string $s$ .
The $i$ -th of the next $q$ lines contains two integers $l_i$ and $r_i$ ( $1 \leq l_i \lt r_i \leq n$ ).
输出格式
For each test case, output $q$ lines. The $i$ -th line of the output of each test case should contain "YES" if there exists a good subsequence equal to the substring $s[l_i...r_i]$ , and "NO" otherwise.
You may print each letter in any case (upper or lower).
You may print each letter in any case (upper or lower).
输入输出样例
输入 #1
2 6 3 001000 2 4 1 3 3 5 4 2 1111 1 4 2 3
输出 #1
YES NO YES NO YES
In the first test case,
- $s[2\ldots 4] = $ "010". In this case $s_1s_3s_5$ ("001000") and $s_2s_3s_6$ ("001000") are good suitable subsequences, while $s_2s_3s_4$ ("001000") is not good.
- $s[1\ldots 3] = $ "001". No suitable good subsequence exists.
- $s[3\ldots 5] = $ "100". Here $s_3s_5s_6$ ("001000") is a suitable good subsequence.
- $s[2\ldots 4] = $ "010". In this case $s_1s_3s_5$ ("001000") and $s_2s_3s_6$ ("001000") are good suitable subsequences, while $s_2s_3s_4$ ("001000") is not good.
- $s[1\ldots 3] = $ "001". No suitable good subsequence exists.
- $s[3\ldots 5] = $ "100". Here $s_3s_5s_6$ ("001000") is a suitable good subsequence.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted