CF1150B.Tiling Challenge
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
One day Alice was cleaning up her basement when she noticed something very curious: an infinite set of wooden pieces! Each piece was made of five square tiles, with four tiles adjacent to the fifth center tile:
By the pieces lay a large square wooden board. The board is divided into n2 cells arranged into n rows and n columns. Some of the cells are already occupied by single tiles stuck to it. The remaining cells are free.Alice started wondering whether she could fill the board completely using the pieces she had found. Of course, each piece has to cover exactly five distinct cells of the board, no two pieces can overlap and every piece should fit in the board entirely, without some parts laying outside the board borders. The board however was too large for Alice to do the tiling by hand. Can you help determine if it's possible to fully tile the board?
输入格式
The first line of the input contains a single integer n ( 3≤n≤50 ) — the size of the board.
The following n lines describe the board. The i -th line ( 1≤i≤n ) contains a single string of length n . Its j -th character ( 1≤j≤n ) is equal to "." if the cell in the i -th row and the j -th column is free; it is equal to "#" if it's occupied.
You can assume that the board contains at least one free cell.
输出格式
Output YES if the board can be tiled by Alice's pieces, or NO otherwise. You can print each letter in any case (upper or lower).
输入输出样例
输入#1
3 #.# ... #.#
输出#1
YES
输入#2
4 ##.# #... #### ##.#
输出#2
NO
输入#3
5 #.### ....# #.... ###.# #####
输出#3
YES
输入#4
5 #.### ....# #.... ....# #..##
输出#4
NO
说明/提示
The following sketches show the example boards and their tilings if such tilings exist: