Drazil and Tiles

题意翻译

施工区域可以描述为一个 $N \times M$ 的矩形,在所有 $1 \times 1$ 的格子中,字符 `*` 表示不计划建设铁路的地面,而字符 `.` 则表示计划建设铁路的地面。有一批 $1 \times 2$ 的材料,铺设一块材料要占据两个 $1 \times 1$ 的字符 `.` 的空间。想知道,是否只存在一种方案,使得每个字符 `.` 被材料覆盖恰好一次。

题目描述

Drazil created a following problem about putting $ 1×2 $ tiles into an $ n×m $ grid: "There is a grid with some cells that are empty and some cells that are occupied. You should use $ 1×2 $ tiles to cover all empty cells and no two tiles should cover each other. And you should print a solution about how to do it." But Drazil doesn't like to write special checking program for this task. His friend, Varda advised him: "how about asking contestant only to print the solution when it exists and it is unique? Otherwise contestant may print 'Not unique' ". Drazil found that the constraints for this task may be much larger than for the original task! Can you solve this new problem? Note that you should print 'Not unique' either when there exists no solution or when there exists several different solutions for the original task.

输入输出格式

输入格式


The first line contains two integers $ n $ and $ m $ ( $ 1<=n,m<=2000 $ ). The following $ n $ lines describe the grid rows. Character '.' denotes an empty cell, and the character '\*' denotes a cell that is occupied.

输出格式


If there is no solution or the solution is not unique, you should print the string "Not unique". Otherwise you should print how to cover all empty cells with $ 1×2 $ tiles. Use characters "<>" to denote horizontal tiles and characters "^v" to denote vertical tiles. Refer to the sample test for the output format example.

输入输出样例

输入样例 #1

3 3
...
.*.
...

输出样例 #1

Not unique

输入样例 #2

4 4
..**
*...
*.**
....

输出样例 #2

<>**
*^<>
*v**
<><>

输入样例 #3

2 4
*..*
....

输出样例 #3

*<>*
<><>

输入样例 #4

1 1
.

输出样例 #4

Not unique

输入样例 #5

1 1
*

输出样例 #5

*

说明

In the first case, there are indeed two solutions: ```plain <>^ ^*v v<> ``` and ```plain ^<> v*^ <>v ``` so the answer is "Not unique".