CF BUDDY
← Problems·

1451C · String Equality

1400 · dp, greedy, hashing

Problem: Ashish has two strings aa and bb, each of length nn, and an integer kk. The strings only contain lowercase English letters.

He wants to convert string aa into string bb by performing some (possibly zero) operations on aa.

In one move, he can either

  • choose an index ii (1in11 \leq i\leq n-1) and swap aia_i and ai+1a_{i+1}, or
  • choose an index ii (1ink+11 \leq i \leq n-k+1) and if ai,ai+1,,ai+k1a_i, a_{i+1}, \ldots, a_{i+k-1} are all equal to some character cc (cc \neq 'z'), replace each one with the next character (c+1)(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 aa.

Help Ashish determine if it is possible to convert string aa into bb after performing some (possibly zero) operations on it.

Input Format: The first line contains a single integer tt (1t1051 \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 nn (2n1062 \leq n \leq 10^6) and kk (1kn1 \leq k \leq n).

The second line of each test case contains the string aa of length nn consisting of lowercase English letters.

The third line of each test case contains the string bb of length nn consisting of lowercase English letters.

It is guaranteed that the sum of values nn among all test cases does not exceed 10610^6.

Output Format: For each test case, print "Yes" if Ashish can convert aa into bb after some moves, else print "No".

You may print the letters of the answer in any case (upper or lower).

Note: In the first test case it can be shown that it is impossible to convert aa into bb.

In the second test case,

"abba" inc\xrightarrow{\text{inc}} "acca" inc\xrightarrow{\text{inc}} \ldots inc\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" swap\xrightarrow{\text{swap}} "aaabab" swap\xrightarrow{\text{swap}} "aaaabb" inc\xrightarrow{\text{inc}} \ldots inc\xrightarrow{\text{inc}} "ddaabb" inc\xrightarrow{\text{inc}} \ldots inc\xrightarrow{\text{inc}} "ddddbb" inc\xrightarrow{\text{inc}} \ldots inc\xrightarrow{\text{inc}} "ddddcc".

Sample Cases

Case 1

Input

4
3 3
abc
bcd
4 2
abba
azza
2 1
zz
aa
6 2
aaabba
ddddcc

Output

No
Yes
No
Yes

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback