CF203B.Game on Paper

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

One not particularly beautiful evening Valera got very bored. To amuse himself a little bit, he found the following game.

He took a checkered white square piece of paper, consisting of n×nn×n cells. After that, he started to paint the white cells black one after the other. In total he painted mm different cells on the piece of paper. Since Valera was keen on everything square, he wondered, how many moves (i.e. times the boy paints a square black) he should make till a black square with side 33 can be found on the piece of paper. But Valera does not know the answer to this question, so he asks you to help him.

Your task is to find the minimum number of moves, till the checkered piece of paper has at least one black square with side of 33 . Otherwise determine that such move does not exist.

输入格式

The first line contains two integers nn and mm (1<=n<=1000(1<=n<=1000 , 1<=m<=min(nn,105))1<=m<=min(n·n,10^{5})) — the size of the squared piece of paper and the number of moves, correspondingly.

Then, mm lines contain the description of the moves. The ii -th line contains two integers xix_{i} , yiy_{i} ( 1<=xi,yi<=n1<=x_{i},y_{i}<=n ) — the number of row and column of the square that gets painted on the ii -th move.

All numbers on the lines are separated by single spaces. It is guaranteed that all moves are different. The moves are numbered starting from 11 in the order, in which they are given in the input. The columns of the squared piece of paper are numbered starting from 11 , from the left to the right. The rows of the squared piece of paper are numbered starting from 11 , from top to bottom.

输出格式

On a single line print the answer to the problem — the minimum number of the move after which the piece of paper has a black square with side 33 . If no such move exists, print -1.

输入输出样例

  • 输入#1

    4 11
    1 1
    1 2
    1 3
    2 2
    2 3
    1 4
    2 4
    3 4
    3 2
    3 3
    4 1
    

    输出#1

    10
    
  • 输入#2

    4 12
    1 1
    1 2
    1 3
    2 2
    2 3
    1 4
    2 4
    3 4
    3 2
    4 2
    4 1
    3 1
    

    输出#2

    -1
    
首页