You are a judge, again! The contest you're judging includes the following problem:
You have one L-shaped triomino of each of 34n−1 different colors. Tile a 2n by 2n 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 2n by 2n grid, where each square in the grid is either 0 or a positive integer from 1 to 34n−1 representing one of the colors. Determine if it is, indeed, a covering of the grid with 34n−1 unique triominos and a single empty space.
L-shaped triominos look like this:

The first line of input contains a single integer n (1≤n≤10), which is the n of the description.
Each of the next 2n lines contains 2n integers x (0≤x≤34n−1), where 0 represents an empty space, and any positive number is a unique identifier of a triomino.
Output a single integer, which is 1 if the given grid is covered with 34n−1 unique triominos and a single empty space. Otherwise, output 0.