You be The Judge, Again

아직 제출이 없습니다시간 제한2초메모리 제한2048 MB

문제

You are a judge, again! The contest you're judging includes the following problem:

You have one L-shaped triomino of each of 4n13\frac{4^n-1}{3} different colors. Tile a 2n2^n by 2n2^n grid using each of these triominos such that there is exactly one blank square and all other squares are covered by exactly one square of such a triomino. All triominos must be used."

Your team is to write a checker for this problem.  Validation of the input values and format has already taken place.  You will be given a purported tiling of a 2n2^n by 2n2^n grid, where each square in the grid is either 0 or a positive integer from 11 to 4n13\frac{4^n-1}{3} representing one of the colors. Determine if it is, indeed, a covering of the grid with 4n13\frac{4^n-1}{3} unique triominos and a single empty space.

L-shaped triominos look like this:

입력

The first line of input contains a single integer nn (1n101 \le n \le 10), which is the nn of the description.

Each of the next 2n2^n lines contains 2n2^n integers xx (0x4n130 \le x \le \frac{4^n-1}{3}), where 0 represents an empty space, and any positive number is a unique identifier of a triomino.

출력

Output a single integer, which is 11 if the given grid is covered with 4n13\frac{4^n-1}{3} unique triominos and a single empty space. Otherwise, output 00.