

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
各要素の値が または である 行 列の行列 が与えられます。 かつ を満たす整数の組 について、 の 行目 列目の要素を で表します。
行列 に対し、以下の操作を 回以上の好きな回数行うことができます。
- を満たす整数 を選び、 を満たす全ての整数 に対して の値を で置き換える。
また、 は行列において上下左右に同じ値が存在しない、すなわち つの整数組 のいずれかであって、 かつ を満たすものが存在しないとき、またそのときに限り孤立した要素であると定義されます。
操作を繰り返し行列 の任意の要素が孤立した要素でない状態にすることが可能か判定し、可能な場合は行う操作回数の最小値を求めてください。
制約
- または
- 入力はすべて整数
入力
入力は以下の形式で標準入力から与えられる。
出力
操作を繰り返すことにより孤立した要素が存在しないようにできる場合は操作回数の最小値を、できない場合は -1
を出力せよ。
入力例 1Copy
3 3 1 1 0 1 0 1 1 0 0
出力例 1Copy
1
を選択し操作を行うと、 となり、孤立した要素は存在しなくなります。
入力例 2Copy
4 4 1 0 0 0 0 1 1 1 0 0 1 0 1 1 0 1
出力例 2Copy
2
入力例 3Copy
2 3 0 1 0 0 1 1
出力例 3Copy
-1
Score : points
Problem Statement
You are given a matrix with rows and columns. The value of each of its elements is or . For an integer pair such that and , we denote by the element at the -th row and -th column.
You can perform the following operation on the matrix any number of times (possibly zero):
- Choose an integer such that . For every integer such that , replace the value of with .
is said to be isolated if and only if there is no adjacent element with the same value; in other words, if and only if none of the four integer pairs satisfies , and .
Determine if you can make the matrix in such a state that no element is isolated by repeating the operation. If it is possible, find the minimum number of operations required to do so.
Constraints
- or
- All values in the input are integers.
Input
The input is given from Standard Input in the following format:
Output
If you can make it in such a state that no element is isolated by repeating the operation, print the minimum number of operations required to do so; otherwise, print -1
.
Sample Input 1Copy
3 3 1 1 0 1 0 1 1 0 0
Sample Output 1Copy
1
An operation with makes , where there is no longer an isolated element.
Sample Input 2Copy
4 4 1 0 0 0 0 1 1 1 0 0 1 0 1 1 0 1
Sample Output 2Copy
2
Sample Input 3Copy
2 3 0 1 0 0 1 1
Sample Output 3Copy
-1