CF86B.Tetris revisited

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Physicist Woll likes to play one relaxing game in between his search of the theory of everything.

Game interface consists of a rectangular n×mn×m playing field and a dashboard. Initially some cells of the playing field are filled while others are empty. Dashboard contains images of all various connected (we mean connectivity by side) figures of 2, 3, 4 and 5 cells, with all their rotations and reflections. Player can copy any figure from the dashboard and place it anywhere at the still empty cells of the playing field. Of course any figure can be used as many times as needed.

Woll's aim is to fill the whole field in such a way that there are no empty cells left, and also... just have some fun.

Every initially empty cell should be filled with exactly one cell of some figure. Every figure should be entirely inside the board.

In the picture black cells stand for initially filled cells of the field, and one-colour regions represent the figures.

输入格式

First line contains integers nn and mm ( 1<=n,m<=10001<=n,m<=1000 ) — the height and the width of the field correspondingly. Next nn lines contain mm symbols each. They represent the field in a natural way: jj -th character of the ii -th line is "#" if the corresponding cell is filled, and "." if it is empty.

输出格式

If there is no chance to win the game output the only number "-1" (without the quotes). Otherwise output any filling of the field by the figures in the following format: each figure should be represented by some digit and figures that touch each other by side should be represented by distinct digits. Every initially filled cell should be represented by "#".

输入输出样例

  • 输入#1

    2 3
    ...
    #.#
    

    输出#1

    000
    #0#
    
  • 输入#2

    3 3
    .#.
    ...
    ..#
    

    输出#2

    5#1
    511
    55#
    
  • 输入#3

    3 3
    ...
    .##
    .#.
    

    输出#3

    -1
    
  • 输入#4

    1 2
    ##
    

    输出#4

    ##
    

说明/提示

In the third sample, there is no way to fill a cell with no empty neighbours.

In the forth sample, Woll does not have to fill anything, so we should output the field from the input.

首页