前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >B. Sereja and Mirroring

B. Sereja and Mirroring

作者头像
全栈程序员站长
发布2021-12-23 13:56:38
1980
发布2021-12-23 13:56:38
举报
文章被收录于专栏:全栈程序员必看

B. Sereja and Mirroring

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

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:

  • 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 × 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

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.

Output

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

Sample test(s)

input

代码语言:javascript
复制
4 3
0 0 1
1 1 0
1 1 0
0 0 1

output

代码语言:javascript
复制
2

input

代码语言:javascript
复制
3 3
0 0 0
0 0 0
0 0 0

output

代码语言:javascript
复制
3

input

代码语言:javascript
复制
8 1
0
1
1
0
0
1
1
0

output

代码语言:javascript
复制
2

Note

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

代码语言:javascript
复制
001
110

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

代码语言:javascript
复制
001
110
110
001
代码语言:javascript
复制
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int num[111][111];

int main ()
{
    int n,m;
    scanf ("%d%d",&n,&m);

    int i,k;

    for (i = 0;i < n;i++)
        for (k = 0;k < m;k++)
            scanf ("%d",&num[i][k]);

    int ans = n;a

    if (n % 2)
        printf ("%d\n",n);
    else
    {
        int tn = n;
        while (1)
        {
            int tf = 1;
            for (i = 0;i < tn / 2;i++)
                for (k = 0;k < m;k++)
                    if (num[i][k] != num[tn - 1 - i][k])
                        tf = 0;
            if (tf)
            {
                if (tn % 2)
                    break;
                tn /= 2;
            }else
            {
                //tn *= 2;
                break;
            }
        }
        printf ("%d\n",tn);
    }

    return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2021年9月12日 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档