CF1720E.Misha and Paintings

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Misha has a square n×nn \times n matrix, where the number in row ii and column jj is equal to ai,ja_{i, j} . Misha wants to modify the matrix to contain exactly kk distinct integers. To achieve this goal, Misha can perform the following operation zero or more times:

  1. choose any square submatrix of the matrix (you choose (x1,y1)(x_1,y_1) , (x2,y2)(x_2,y_2) , such that x1x2x_1 \leq x_2 , y1y2y_1 \leq y_2 , x2x1=y2y1x_2 - x_1 = y_2 - y_1 , then submatrix is a set of cells with coordinates (x,y)(x, y) , such that x1xx2x_1 \leq x \leq x_2 , y1yy2y_1 \leq y \leq y_2 ),
  2. choose an integer kk , where 1kn21 \leq k \leq n^2 ,
  3. replace all integers in the submatrix with kk .

Please find the minimum number of operations that Misha needs to achieve his goal.

输入格式

The first input line contains two integers nn and kk ( 1n500,1kn21 \leq n \leq 500, 1 \leq k \leq n^2 ) — the size of the matrix and the desired amount of distinct elements in the matrix.

Then nn lines follows. The ii -th of them contains nn integers ai,1,ai,2,,ai,na_{i, 1}, a_{i, 2}, \ldots, a_{i, n} ( 1ai,jn21 \leq a_{i,j} \leq n^2 ) — the elements of the ii -th row of the matrix.

输出格式

Output one integer — the minimum number of operations required.

输入输出样例

  • 输入#1

    3 4
    1 1 1
    1 1 2
    3 4 5

    输出#1

    1
  • 输入#2

    3 2
    2 1 3
    2 1 1
    3 1 2

    输出#2

    2
  • 输入#3

    3 3
    1 1 1
    1 1 2
    2 2 2

    输出#3

    1
  • 输入#4

    3 2
    1 1 1
    1 2 1
    2 2 2

    输出#4

    0

说明/提示

In the first test case the answer is 11 , because one can change the value in the bottom right corner of the matrix to 11 . The resulting matrix can be found below:

111112341In the second test case the answer is 22 . First, one can change the entire matrix to contain only 11 s, and the change the value of any single cell to 22 . One of the possible resulting matrices is displayed below:

111111112

首页