A13245 | Irreducible Anagrams
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Let's call two strings $s$ and $t$ anagrams of each other if it is possible to rearrange symbols in the string $s$ to get a string, equal to $t$ .
Let's consider two strings $s$ and $t$ which are anagrams of each other. We say that $t$ is a reducible anagram of $s$ if there exists an integer $k \ge 2$ and $2k$ non-empty strings $s_1, t_1, s_2, t_2, \dots, s_k, t_k$ that satisfy the following conditions:
1. If we write the strings $s_1, s_2, \dots, s_k$ in order, the resulting string will be equal to $s$ ;
2. If we write the strings $t_1, t_2, \dots, t_k$ in order, the resulting string will be equal to $t$ ;
3. For all integers $i$ between $1$ and $k$ inclusive, $s_i$ and $t_i$ are anagrams of each other.
If such strings don't exist, then $t$ is said to be an irreducible anagram of $s$ . Note that these notions are only defined when $s$ and $t$ are anagrams of each other.
For example, consider the string $s = $ "gamegame". Then the string $t = $ "megamage" is a reducible anagram of $s$ , we may choose for example $s_1 = $ "game", $s_2 = $ "gam", $s_3 = $ "e" and $t_1 = $ "mega", $t_2 = $ "mag", $t_3 = $ "e":
On the other hand, we can prove that $t = $ "memegaga" is an irreducible anagram of $s$ .
You will be given a string $s$ and $q$ queries, represented by two integers $1 \le l \le r \le |s|$ (where $|s|$ is equal to the length of the string $s$ ). For each query, you should find if the substring of $s$ formed by characters from the $l$ -th to the $r$ -th has at least one irreducible anagram.
Let's consider two strings $s$ and $t$ which are anagrams of each other. We say that $t$ is a reducible anagram of $s$ if there exists an integer $k \ge 2$ and $2k$ non-empty strings $s_1, t_1, s_2, t_2, \dots, s_k, t_k$ that satisfy the following conditions:
1. If we write the strings $s_1, s_2, \dots, s_k$ in order, the resulting string will be equal to $s$ ;
2. If we write the strings $t_1, t_2, \dots, t_k$ in order, the resulting string will be equal to $t$ ;
3. For all integers $i$ between $1$ and $k$ inclusive, $s_i$ and $t_i$ are anagrams of each other.
If such strings don't exist, then $t$ is said to be an irreducible anagram of $s$ . Note that these notions are only defined when $s$ and $t$ are anagrams of each other.
For example, consider the string $s = $ "gamegame". Then the string $t = $ "megamage" is a reducible anagram of $s$ , we may choose for example $s_1 = $ "game", $s_2 = $ "gam", $s_3 = $ "e" and $t_1 = $ "mega", $t_2 = $ "mag", $t_3 = $ "e":
On the other hand, we can prove that $t = $ "memegaga" is an irreducible anagram of $s$ .
You will be given a string $s$ and $q$ queries, represented by two integers $1 \le l \le r \le |s|$ (where $|s|$ is equal to the length of the string $s$ ). For each query, you should find if the substring of $s$ formed by characters from the $l$ -th to the $r$ -th has at least one irreducible anagram.
输入格式
The first line contains a string $s$ , consisting of lowercase English characters ( $1 \le |s| \le 2 \cdot 10^5$ ).
The second line contains a single integer $q$ ( $1 \le q \le 10^5$ ) — the number of queries.
Each of the following $q$ lines contain two integers $l$ and $r$ ( $1 \le l \le r \le |s|$ ), representing a query for the substring of $s$ formed by characters from the $l$ -th to the $r$ -th.
The second line contains a single integer $q$ ( $1 \le q \le 10^5$ ) — the number of queries.
Each of the following $q$ lines contain two integers $l$ and $r$ ( $1 \le l \le r \le |s|$ ), representing a query for the substring of $s$ formed by characters from the $l$ -th to the $r$ -th.
输出格式
For each query, print a single line containing "Yes" (without quotes) if the corresponding substring has at least one irreducible anagram, and a single line containing "No" (without quotes) otherwise.
输入输出样例
输入 #1
aaaaa 3 1 1 2 4 5 5
输出 #1
Yes No Yes
输入 #2
aabbbbbbc 6 1 2 2 4 2 2 1 9 5 7 3 5
输出 #2
No Yes Yes Yes No No
In the first sample, in the first and third queries, the substring is "a", which has itself as an irreducible anagram since two or more non-empty strings cannot be put together to obtain "a". On the other hand, in the second query, the substring is "aaa", which has no irreducible anagrams: its only anagram is itself, and we may choose $s_1 = $ "a", $s_2 = $ "aa", $t_1 = $ "a", $t_2 = $ "aa" to show that it is a reducible anagram.
In the second query of the second sample, the substring is "abb", which has, for example, "bba" as an irreducible anagram.
In the second query of the second sample, the substring is "abb", which has, for example, "bba" as an irreducible anagram.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted