跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2050. Sereja and Table

    ID: 2056 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 7 上传者: 标签>位运算贪心数学算法思想提高难度共享题库Codeforces英文题面题目来源题面语言

Sereja and Table

题目描述

B. Sereja and Table
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Sereja has an n×m rectangular table a, each cell of the table contains a zero or a number one. Sereja wants his table to meet the following requirement: each connected component of the same values forms a rectangle with sides parallel to the sides of the table. Rectangles should be filled with cells, that is, if a component form a rectangle of size h×w, then the component must contain exactly hw cells.

A connected component of the same values is a set of cells of the table that meet the following conditions:

  • every two cells of the set have the same value;
  • the cells of the set form a connected region on the table (two cells are connected if they are adjacent in some row or some column of the table);
  • it is impossible to add any cell to the set unless we violate the two previous conditions.

Can Sereja change the values of at most k cells of the table so that the table met the described requirement? What minimum number of table cells should he change in this case?

Input

The first line contains integers n, m and k (1≤n,m≤100;1≤k≤10). Next n lines describe the table a: the i-th of them contains m integers ai1,ai2,...,aim (0≤ai,j≤1) − the values in the cells of the i-th row.

Output

Print -1, if it is impossible to meet the requirement. Otherwise, print the minimum number of cells which should be changed.

Examples
Input
5 5 2
1 1 1 1 1
1 1 1 1 1
1 1 0 1 1
1 1 1 1 1
1 1 1 1 1
Output
1
Input
3 4 1
1 0 0 0
0 1 1 1
1 1 1 0
Output
-1
Input
3 4 1
1 0 0 1
0 1 1 0
1 0 0 1
Output
0

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1641 题。保留原作者与原赛事署名。