E - 図形のシャッフル 解説 /

実行時間制限: 2 sec / メモリ制限: 1024 MB

問題文

#. からなる HHWW 列の図形 S,TS,T が与えられます。
図形 SSHH 個の文字列 S1,S2,,SHS _ 1,S _ 2,\ldots,S _ H として与えられ、 SiS _ ijj 文字目は SSiijj 列にある要素を表します。 TT についても同様です。

SS を行ごとに並べ替えて TT と等しくできるか判定してください。

ただし、図形 XX を行ごとに並べ替えるとは、以下の操作を言います。

  • i=1,2,,Hi=1,2,\ldots,H のそれぞれについて、独立に次の操作を行う。
    • (1,2,,W)(1,2,\ldots,W) の順列 P=(P1,P2,,PW)P=(P _ 1,P _ 2,\ldots,P _ W) をひとつ選択する。
    • 1jW1 \leq j \leq W を満たす全ての整数 jj について同時に、 XXiijj 列にある要素を iiPjP_j 列にある要素に置き換える。

異なる ii に対して異なる順列 PP を選んでもよいことに注意してください。

制約

  • H,WH,W は整数
  • 1H,W1 \leq H,W
  • 1H×W4×1051 \leq H \times W \leq 4 \times 10 ^ 5
  • Si,TiS _ i,T _ i#. からなる長さ WW の文字列

入力

入力は以下の形式で標準入力から与えられる。

HH WW
S1S_1
S2S_2
\vdots
SHS_H
T1T_1
T2T_2
\vdots
THT_H

出力

SSTT と等しくできるなら Yes 、 そうでないなら No と出力せよ。


入力例 1Copy

Copy
3 4
##.#
##..
.#..
###.
#..#
...#

出力例 1Copy

Copy
Yes

例えば i=1,2,3i=1,2,3 について PP としてそれぞれ (4,2,1,3),(1,3,4,2),(4,1,3,2)(4,2,1,3),(1,3,4,2),(4,1,3,2) を選ぶと、 SSTT と等しくできます。


入力例 2Copy

Copy
3 4
#...
#..#
.###
..##
#..#
##..

出力例 2Copy

Copy
No

入力例 3Copy

Copy
2 1
#
.
#
.

出力例 3Copy

Copy
Yes

S=TS=T である場合もあります。


入力例 4Copy

Copy
8 7
..#.#.#
..#....
#.#....
..#.#.#
..#..#.
..#...#
..#....
#.#....
##.#...
...#...
#..#...
..#..##
...#.#.
....#.#
......#
#....#.

出力例 4Copy

Copy
Yes

Problem Statement

You are given figures SS and TT with HH rows and WW columns consisting of # and ..
The figure SS is given as HH strings S1,S2,,SHS _ 1,S _ 2,\ldots,S _ H; the jj-th character of SiS _ i represents the element at the ii-th row and jj-th column of SS. The figure TT is given similarly.

Determine whether one can rearrange each row of SS to make SS equal TT.

Here, rearranging each row of a figure XX is the following operation.

  • For each i=1,2,,Hi=1,2,\ldots,H, perform the following procedure independently.
    • Choose a permutation P=(P1,P2,,PW)P=(P _ 1,P _ 2,\ldots,P _ W) of (1,2,,W)(1,2,\ldots,W).
    • For all integers jj such that 1jW1 \leq j \leq W, simultaneously replace the element at the ii-th row and jj-th column of XX with the one at the ii-th row and PjP_j-th column.

Note that you may choose different permutations PP for different ii.

Constraints

  • HH and WW are integers.
  • 1H,W1 \leq H,W
  • 1H×W4×1051 \leq H \times W \leq 4 \times 10 ^ 5
  • SiS_i and TiT_i are strings of length WW consisting of # and ..

Input

The input is given from Standard Input in the following format:

HH WW
S1S_1
S2S_2
\vdots
SHS_H
T1T_1
T2T_2
\vdots
THT_H

Output

Print Yes if one can make SS equal TT; print No otherwise.


Sample Input 1Copy

Copy
3 4
##.#
##..
.#..
###.
#..#
...#

Sample Output 1Copy

Copy
Yes

For example, if you choose (4,2,1,3),(1,3,4,2),(4,1,3,2)(4,2,1,3),(1,3,4,2),(4,1,3,2) for i=1,2,3i=1,2,3, respectively, you can make SS equal TT.


Sample Input 2Copy

Copy
3 4
#...
#..#
.###
..##
#..#
##..

Sample Output 2Copy

Copy
No

Sample Input 3Copy

Copy
2 1
#
.
#
.

Sample Output 3Copy

Copy
Yes

S=TS=T may hold.


Sample Input 4Copy

Copy
8 7
..#.#.#
..#....
#.#....
..#.#.#
..#..#.
..#...#
..#....
#.#....
##.#...
...#...
#..#...
..#..##
...#.#.
....#.#
......#
#....#.

Sample Output 4Copy

Copy
Yes


2025-04-04 (金)
04:59:02 +00:00