CF754E.Dasha and cyclic table

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Dasha is fond of challenging puzzles: Rubik's Cube 3×3×33×3×3 , 4×4×44×4×4 , 5×5×55×5×5 and so on. This time she has a cyclic table of size n×mn×m , and each cell of the table contains a lowercase English letter. Each cell has coordinates (i,j)(i,j) ( 0<=i<n , 0<=j<m ). The table is cyclic means that to the right of cell (i,j)(i,j) there is the cell , and to the down there is the cell .

Dasha has a pattern as well. A pattern is a non-cyclic table of size r×cr×c . Each cell is either a lowercase English letter or a question mark. Each cell has coordinates (i,j)(i,j) ( 0<=i<r , 0<=j<c ).

The goal of the puzzle is to find all the appearance positions of the pattern in the cyclic table.

We say that the cell (i,j)(i,j) of cyclic table is an appearance position, if for every pair (x,y)(x,y) such that 0<=x<r and 0<=y<c one of the following conditions holds:

  • There is a question mark in the cell (x,y)(x,y) of the pattern, or
  • The cell of the cyclic table equals to the cell (x,y)(x,y) of the pattern.

Dasha solved this puzzle in no time, as well as all the others she ever tried. Can you solve it?.

输入格式

The first line contains two integers nn and mm ( 1<=n,m<=4001<=n,m<=400 ) — the cyclic table sizes.

Each of the next nn lines contains a string of mm lowercase English characters — the description of the cyclic table.

The next line contains two integers rr and cc ( 1<=r,c<=4001<=r,c<=400 ) — the sizes of the pattern.

Each of the next rr lines contains a string of cc lowercase English letter and/or characters '?' — the description of the pattern.

输出格式

Print nn lines. Each of the nn lines should contain mm characters. Each of the characters should equal '0' or '1'.

The jj -th character of the ii -th ( 00 -indexed) line should be equal to '1', in case the cell (i,j)(i,j) is an appearance position, otherwise it should be equal to '0'.

输入输出样例

  • 输入#1

    5 7
    qcezchs
    hhedywq
    wikywqy
    qckrqzt
    bqexcxz
    3 2
    ??
    yw
    ?q
    

    输出#1

    0000100
    0001001
    0000000
    0000000
    0000000
    
  • 输入#2

    10 10
    fwtoayylhw
    yyaryyjawr
    ywrdzwhscy
    hnsyyxiphn
    bnjwzyyjvo
    kkjgseenwn
    gvmiflpcsy
    lxvkwrobwu
    wyybbcocyy
    yysijsvqry
    2 2
    ??
    yy
    

    输出#2

    1000100000
    0000000001
    0001000000
    0000010000
    0000000000
    0000000000
    0000000000
    0100000010
    1000000001
    0000010000
    
  • 输入#3

    8 6
    ibrgxl
    xqdcsg
    okbcgi
    tvpetc
    xgxxig
    igghzo
    lmlaza
    gpswzv
    1 4
    gx??
    

    输出#3

    000100
    000001
    000000
    000000
    010001
    000000
    000000
    000000
    
首页