Geometric Gridlock
문제
Pentominous is a grid logic puzzle based on the twelve pentominoes. A pentomino is a polygon formed by connecting five equal-sized squares edge to edge.
Figure G.1: The twelve pentominoes (up to mirroring and rotations) and their names.
The goal of this puzzle is to divide a grid into regions of size (that is, pentominoes), so that no two regions that share a side have the same shape. You are allowed to rotate and mirror the pentominoes, but such rotations and reflections count as the same shape. The twelve possible shapes can be seen in Figure \ref{fig:pentominoes}.
In a normal Pentominous puzzle, the player is given some pre-filled cells, for which the shape of their region is already predetermined. In this problem, you are working with a completely blank grid of dimensions , and your task is to create any valid arrangement of pentominoes.
입력
The input consists of:
- One line with two integers and (), the height and width of the grid.
출력
If there is no valid Pentominous grid, output "no". Otherwise, output "yes", followed by lines of width each, a possible grid using the letters from Figure G.1. If there is more than one solution, any one of them will be accepted.
예제
예제 1
3 5
yes UUXUU UXXXU UUXUU
예제 2
2 10
yes LLLLNNNPPP LIIIIINNPP
예제 3
99 17
no
예제 4
6 10
yes IPPYYYYVVV IPPXYLLLLV IPXXXFZZLV ITWXFFFZUU ITWWNNFZZU TTTWWNNNUU
예제 5
1 5
yes IIIII