3208.Sereja and Mirroring

Time Limit: 1s Memory Limit: 256MB

Let's assume that we are given a matrix b of size x \times y, let's determine the operation of mirroring matrix b. The mirroring of matrix b is a 2x \times y matrix c which has the following properties:
the upper half of matrix c (rows with numbers from 1 to x) exactly matches b; the lower half of matrix c (rows with numbers from x+1 to 2x) is symmetric to the upper one; the symmetry line is the line that separates two halves (the line that goes in the middle, between rows x and x+1).
Sereja has an n \times m matrix a. He wants to find such matrix b, that it can be transformed into matrix a, if we'll perform on it several (possibly zero) mirrorings. What minimum number of rows can such matrix contain?

Input Format(From the terminal/stdin)

The first line contains two integers, n and m (1 \le n,m \le 100). Each of the next n lines contains m integers - the elements of matrix a. The i-th line contains integers ai1,ai2,...,aim (0 \le aij \le 1) - the i-th row of the matrix a.

Output Format(To the terminal/stdout)

In the single line, print the answer to the problem - the minimum number of rows of matrix b.

Sample Input 1

Copy
4 3
0 0 1
1 1 0
1 1 0
0 0 1
 · \n
 · · \n
 · · \n
 · · \n
 · · \n

Sample Output 1

Copy
2
 \n

Sample Input 2

Copy
3 3
0 0 0
0 0 0
0 0 0
 · \n
 · · \n
 · · \n
 · · \n

Sample Output 2

Copy
3
 \n

Sample Input 3

Copy
8 1
0
1
1
0
0
1
1
0
 · \n
 \n
 \n
 \n
 \n
 \n
 \n
 \n
 \n

Sample Output 3

Copy
2
 \n

Hints

In the first test sample the answer is a 2 \times 3 matrix b:

001
110

If we perform a mirroring operation with this matrix, we get the matrix a that is given in the input:

001
110
110
001

Submit

请先 登录

© 2025 FAQs