A13908 | String Equality
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Ashish has two strings $a$ and $b$ , each of length $n$ , and an integer $k$ . The strings only contain lowercase English letters.
He wants to convert string $a$ into string $b$ by performing some (possibly zero) operations on $a$ .
In one move, he can either
- choose an index $i$ ( $1 \leq i\leq n-1$ ) and swap $a_i$ and $a_{i+1}$ , or
- choose an index $i$ ( $1 \leq i \leq n-k+1$ ) and if $a_i, a_{i+1}, \ldots, a_{i+k-1}$ are all equal to some character $c$ ( $c \neq$ 'z'), replace each one with the next character $(c+1)$ , that is, 'a' is replaced by 'b', 'b' is replaced by 'c' and so on.
Note that he can perform any number of operations, and the operations can only be performed on string $a$ .
Help Ashish determine if it is possible to convert string $a$ into $b$ after performing some (possibly zero) operations on it.
He wants to convert string $a$ into string $b$ by performing some (possibly zero) operations on $a$ .
In one move, he can either
- choose an index $i$ ( $1 \leq i\leq n-1$ ) and swap $a_i$ and $a_{i+1}$ , or
- choose an index $i$ ( $1 \leq i \leq n-k+1$ ) and if $a_i, a_{i+1}, \ldots, a_{i+k-1}$ are all equal to some character $c$ ( $c \neq$ 'z'), replace each one with the next character $(c+1)$ , that is, 'a' is replaced by 'b', 'b' is replaced by 'c' and so on.
Note that he can perform any number of operations, and the operations can only be performed on string $a$ .
Help Ashish determine if it is possible to convert string $a$ into $b$ after performing some (possibly zero) operations on it.
输入格式
The first line contains a single integer $t$ ( $1 \leq t \leq 10^5$ ) — the number of test cases. The description of each test case is as follows.
The first line of each test case contains two integers $n$ ( $2 \leq n \leq 10^6$ ) and $k$ ( $1 \leq k \leq n$ ).
The second line of each test case contains the string $a$ of length $n$ consisting of lowercase English letters.
The third line of each test case contains the string $b$ of length $n$ consisting of lowercase English letters.
It is guaranteed that the sum of values $n$ among all test cases does not exceed $10^6$ .
The first line of each test case contains two integers $n$ ( $2 \leq n \leq 10^6$ ) and $k$ ( $1 \leq k \leq n$ ).
The second line of each test case contains the string $a$ of length $n$ consisting of lowercase English letters.
The third line of each test case contains the string $b$ of length $n$ consisting of lowercase English letters.
It is guaranteed that the sum of values $n$ among all test cases does not exceed $10^6$ .
输出格式
For each test case, print "Yes" if Ashish can convert $a$ into $b$ after some moves, else print "No".
You may print the letters of the answer in any case (upper or lower).
You may print the letters of the answer in any case (upper or lower).
输入输出样例
输入 #1
4 3 3 abc bcd 4 2 abba azza 2 1 zz aa 6 2 aaabba ddddcc
输出 #1
No Yes No Yes
In the first test case it can be shown that it is impossible to convert $a$ into $b$ .
In the second test case,
"abba" $\xrightarrow{\text{inc}}$ "acca" $\xrightarrow{\text{inc}}$ $\ldots$ $\xrightarrow{\text{inc}}$ "azza".
Here "swap" denotes an operation of the first type, and "inc" denotes an operation of the second type.
In the fourth test case,
"aaabba" $\xrightarrow{\text{swap}}$ "aaabab" $\xrightarrow{\text{swap}}$ "aaaabb" $\xrightarrow{\text{inc}}$ $\ldots$ $\xrightarrow{\text{inc}}$ "ddaabb" $\xrightarrow{\text{inc}}$ $\ldots$ $\xrightarrow{\text{inc}}$ "ddddbb" $\xrightarrow{\text{inc}}$ $\ldots$ $\xrightarrow{\text{inc}}$ "ddddcc".
In the second test case,
"abba" $\xrightarrow{\text{inc}}$ "acca" $\xrightarrow{\text{inc}}$ $\ldots$ $\xrightarrow{\text{inc}}$ "azza".
Here "swap" denotes an operation of the first type, and "inc" denotes an operation of the second type.
In the fourth test case,
"aaabba" $\xrightarrow{\text{swap}}$ "aaabab" $\xrightarrow{\text{swap}}$ "aaaabb" $\xrightarrow{\text{inc}}$ $\ldots$ $\xrightarrow{\text{inc}}$ "ddaabb" $\xrightarrow{\text{inc}}$ $\ldots$ $\xrightarrow{\text{inc}}$ "ddddbb" $\xrightarrow{\text{inc}}$ $\ldots$ $\xrightarrow{\text{inc}}$ "ddddcc".
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted