#4776. [USACO2017 Open] Modern Art

[USACO2017 Open] Modern Art

题目描述

Art critics worldwide have only recently begun to recognize the creative genius behind the great bovine painter, Picowso.

Picowso paints in a very particular way. She starts with an n×nn \times n blank canvas, represented by an n×nn \times n grid of zeros, where a zero indicates an empty cell of the canvas. She then draws n2n^2 rectangles on the canvas, one in each of n2n^2 colors (conveniently numbered 1n21 \ldots n^2). For example, she might start by painting a rectangle in color 22, giving this intermediate canvas:

2 2 2 0

2 2 2 0

2 2 2 0

0 0 0 0

She might then paint a rectangle in color 77:

2 2 2 0

2 7 7 7

2 7 7 7

0 0 0 0

And then she might paint a small rectangle in color 33:

2 2 3 0

2 7 3 7

2 7 7 7

0 0 0 0

Each rectangle has sides parallel to the edges of the canvas, and a rectangle could be as large as the entire canvas or as small as a single cell. Each color from 1n21 \ldots n^2 is used exactly once, although later colors might completely cover up some of the earlier colors.

Given the final state of the canvas, please count how many of the n2n^2 colors could have possibly been the first to be painted.

输入格式

The first line of input contains nn, the size of the canvas.
The next nn lines describe the final picture of the canvas, each containing nn integers that are in the range 0n20 \ldots n^2. The input is guaranteed to have been drawn as described above, by painting successive rectangles in different colors.

输出格式

Please output a count of the number of colors that could have been drawn first.

4
2 2 3 0
2 7 3 7
2 7 7 7
0 0 0 0
14

说明

In this example, color 22 could have been the first to be painted. Color 33 clearly had to have been painted after color 77, and color 77 clearly had to have been painted after color 22. Since we don't see the other colors, we deduce that they also could have been painted first.

数据规模与约定

对于 100%100\% 的数据,1n1031\le n\le 10^3

题目来源

Platinum