#P16025. [ICPC 2021 NAC] You be The Judge, Again

[ICPC 2021 NAC] You be The Judge, Again

题目描述

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 00 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:

:::align{center} :::

输入格式

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 00 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.

2
1 1 2 2
1 3 3 2
4 4 3 5
4 0 5 5
1
1
1 1
1 1
0