CF958A2.Death Stars (medium)

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The stardate is 1983, and Princess Heidi is getting better at detecting the Death Stars. This time, two Rebel spies have yet again given Heidi two maps with the possible locations of the Death Star. Since she got rid of all double agents last time, she knows that both maps are correct, and indeed show the map of the solar system that contains the Death Star. However, this time the Empire has hidden the Death Star very well, and Heidi needs to find a place that appears on both maps in order to detect the Death Star.

The first map is an N×MN×M grid, each cell of which shows some type of cosmic object that is present in the corresponding quadrant of space. The second map is an M×NM×N grid. Heidi needs to align those two maps in such a way that they overlap over some M×MM×M section in which all cosmic objects are identical. Help Heidi by identifying where such an M×MM×M section lies within both maps.

输入格式

The first line of the input contains two space-separated integers NN and MM ( 1<=N<=20001<=N<=2000 , 1<=M<=2001<=M<=200 , M<=NM<=N ). The next NN lines each contain MM lower-case Latin characters (a-z), denoting the first map. Different characters correspond to different cosmic object types. The next MM lines each contain NN characters, describing the second map in the same format.

输出格式

The only line of the output should contain two space-separated integers ii and jj , denoting that the section of size M×MM×M in the first map that starts at the ii -th row is equal to the section of the second map that starts at the jj -th column. Rows and columns are numbered starting from 1.

If there are several possible ways to align the maps, Heidi will be satisfied with any of those. It is guaranteed that a solution exists.

输入输出样例

  • 输入#1

    10 5
    somer
    andom
    noise
    mayth
    eforc
    ebewi
    thyou
    hctwo
    again
    noise
    somermayth
    andomeforc
    noiseebewi
    againthyou
    noisehctwo
    

    输出#1

    4 6
    
  • 输入#2

    2
    XX
    OO
    XO
    OX
    

    输出#2

    No
    

说明/提示

The 5-by-5 grid for the first test case looks like this:

<pre class="verbatim"><br></br>mayth<br></br>eforc<br></br>ebewi<br></br>thyou<br></br>hctwo<br></br>
首页