

実行時間制限: 2 sec / メモリ制限: 1024 MB
問題文
#
と .
からなる 行 列の図形 が与えられます。
図形 は 個の文字列 として与えられ、 の 文字目は の 行 列にある要素を表します。 についても同様です。
を行ごとに並べ替えて と等しくできるか判定してください。
ただし、図形 を行ごとに並べ替えるとは、以下の操作を言います。
- のそれぞれについて、独立に次の操作を行う。
- の順列 をひとつ選択する。
- を満たす全ての整数 について同時に、 の 行 列にある要素を 行 列にある要素に置き換える。
異なる に対して異なる順列 を選んでもよいことに注意してください。
制約
- は整数
- は
#
と.
からなる長さ の文字列
入力
入力は以下の形式で標準入力から与えられる。
出力
を と等しくできるなら Yes
、 そうでないなら No
と出力せよ。
入力例 1Copy
3 4 ##.# ##.. .#.. ###. #..# ...#
出力例 1Copy
Yes
例えば について としてそれぞれ を選ぶと、 を と等しくできます。
入力例 2Copy
3 4 #... #..# .### ..## #..# ##..
出力例 2Copy
No
入力例 3Copy
2 1 # . # .
出力例 3Copy
Yes
である場合もあります。
入力例 4Copy
8 7 ..#.#.# ..#.... #.#.... ..#.#.# ..#..#. ..#...# ..#.... #.#.... ##.#... ...#... #..#... ..#..## ...#.#. ....#.# ......# #....#.
出力例 4Copy
Yes
Problem Statement
You are given figures and with rows and columns consisting of #
and .
.
The figure is given as strings ; the -th character of represents the element at the -th row and -th column of . The figure is given similarly.
Determine whether one can rearrange each row of to make equal .
Here, rearranging each row of a figure is the following operation.
- For each , perform the following procedure independently.
- Choose a permutation of .
- For all integers such that , simultaneously replace the element at the -th row and -th column of with the one at the -th row and -th column.
Note that you may choose different permutations for different .
Constraints
- and are integers.
- and are strings of length consisting of
#
and.
.
Input
The input is given from Standard Input in the following format:
Output
Print Yes
if one can make equal ; print No
otherwise.
Sample Input 1Copy
3 4 ##.# ##.. .#.. ###. #..# ...#
Sample Output 1Copy
Yes
For example, if you choose for , respectively, you can make equal .
Sample Input 2Copy
3 4 #... #..# .### ..## #..# ##..
Sample Output 2Copy
No
Sample Input 3Copy
2 1 # . # .
Sample Output 3Copy
Yes
may hold.
Sample Input 4Copy
8 7 ..#.#.# ..#.... #.#.... ..#.#.# ..#..#. ..#...# ..#.... #.#.... ##.#... ...#... #..#... ..#..## ...#.#. ....#.# ......# #....#.
Sample Output 4Copy
Yes