Let's assume that we are given a matrix b of size x × y, let's determine the operation of mirroring matrix b. The mirroring of matrix b is a2x × y matrix c which has the following properties:
Sereja has an n × 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?
The first line contains two integers, n and m (1 ≤ n, m ≤ 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 ≤ aij ≤ 1) — the i-th row of the matrix a.
In the single line, print the answer to the problem — the minimum number of rows of matrix b.
4 3 0 0 1 1 1 0 1 1 0 0 0 1
2
3 3 0 0 0 0 0 0 0 0 0
3
8 1 0 1 1 0 0 1 1 0
2
In the first test sample the answer is a 2 × 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
基本思路: 将所求矩阵设为原矩阵,然后二分,直到不满足条件为止,详见代码:
#include <cstdio> int arr[101][101],n,m,res; void solve(int R){ if(R%2) return; for(int i=0,j=R-1;i<R/2;i++,j--) for(int k=0;k<m;k++) if(arr[i][k]!=arr[j][k]) return; res/=2; solve(R/2); } int main() { scanf("%d%d",&n,&m); for(int i=0;i<n;i++) for(int j=0;j<m;j++) scanf("%d",&arr[i][j]); res=n; solve(n); printf("%d\n",res); }