Problem A
Brick Wall
Pat and Mat are trying to build a brick wall. They have three types of bricks—all have the same depth and height but they are of three different widths: 1, 2, and 3. As every builder knows (and Pat and Mat learned after watching their walls fall down quite a few times), a wall is built by layering rows of bricks, with the added requirement that for any two neighboring bricks there has to be a brick above that covers the connection of the two bricks (unless the bricks are in the top-most row). Pat and Mat somehow managed to build quite a few rows and now they are about to do the last row. But they are having troubles figuring out whether it is possible to build the last row so that all connections in the row below are covered. Of course, all the rows have to be of the same length and aligned on the sides. Help!
![\includegraphics[width=0.5\textwidth ]{brickwall}](/problems/brickwall/file/statement/en/img-0001.png)
Input
The wall is described on two lines. The first of these lines
contains four numbers
Output
The output contains one line with the string “YES”
if it is possible to build the last row for the
Sample Input 1 | Sample Output 1 |
---|---|
5 2 1 3 2 3 1 3 2 |
YES |
Sample Input 2 | Sample Output 2 |
---|---|
5 1 2 3 2 3 1 3 2 |
NO |
Sample Input 3 | Sample Output 3 |
---|---|
5 6 1 1 2 3 1 2 3 |
NO |