20200226补题
Posted wsytj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了20200226补题相关的知识,希望对你有一定的参考价值。
B - Game on Paper
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 × n cells. After that, he started to paint the white cells black one after the other. In total he painted m 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 3 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 3. Otherwise determine that such move does not exist.
Input
The first line contains two integers n and m (1 ≤ n ≤ 1000, 1 ≤ m ≤ min(n·n, 105)) — the size of the squared piece of paper and the number of moves, correspondingly.
Then, m lines contain the description of the moves. The i-th line contains two integers xi, yi (1 ≤ xi, yi ≤ n) — the number of row and column of the square that gets painted on the i-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 1 in the order, in which they are given in the input. The columns of the squared piece of paper are numbered starting from 1, from the left to the right. The rows of the squared piece of paper are numbered starting from 1, from top to bottom.
Output
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 3. If no such move exists, print -1.
Examples
4 11
1 1
1 2
1 3
2 2
2 3
1 4
2 4
3 4
3 2
3 3
4 1
10
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
-1
1 #include <iostream> 2 #include <algorithm> 3 using namespace std; 4 int x[9]={0,-1,0,1,1,1,0,-1,-1}; 5 int y[9]={0,1,1,1,0,-1,-1,-1,0}; 6 int m[1010][1010]; 7 int main() 8 { 9 int n,m,c=0; 10 cin>>n>>m; 11 while(m--) 12 { 13 c++; 14 int a,b; 15 cin>>a>>b; 16 for(int i=0;i<9;i++) 17 { 18 if(a+x[i]>0&&a+x[i]<=n&&b+y[i]>0&&b+y[i]<=n) 19 { 20 m[a+x[i]][b+y[i]]++; 21 22 if(m[a+x[i]][b+y[i]]==9) 23 { 24 cout<<c<<endl; 25 return 0; 26 } 27 } 28 } 29 } 30 cout<<-1<<endl; 31 }
以上是关于20200226补题的主要内容,如果未能解决你的问题,请参考以下文章