Mike and some bears are playing a game just for fun. Mike is the judge. All bears except Mike are standing in an n × m grid, there's exactly one bear in each cell. We denote the bear standing in column number j of row number i by (i, j). Mike's hands are on his ears (since he's the judge) and each bear standing in the grid has hands either on his mouth or his eyes.
They play for q rounds. In each round, Mike chooses a bear (i, j) and tells him to change his state i. e. if his hands are on his mouth, then he'll put his hands on his eyes or he'll put his hands on his mouth otherwise. After that, Mike wants to know the score of the bears.
Score of the bears is the maximum over all rows of number of consecutive bears with hands on their eyes in that row.
Since bears are lazy, Mike asked you for help. For each round, tell him the score of these bears after changing the state of a bear selected in that round.
The first line of input contains three integers n, m and q (1 ≤ n, m ≤ 500 and 1 ≤ q ≤ 5000).
The next n lines contain the grid description. There are m integers separated by spaces in each line. Each of these numbers is either 0(for mouth) or 1 (for eyes).
The next q lines contain the information about the rounds. Each of them contains two integers i and j (1 ≤ i ≤ n and 1 ≤ j ≤ m), the row number and the column number of the bear changing his state.
After each round, print the current score of the bears.
5 4 5 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 0 0 0 1 1 1 4 1 1 4 2 4 3
3 4 3 34
题目大意:对单个点进行更新,然后看每行的连续的1有多少,然后从每行中选出最大的连续1的数量。可以模拟解题,但是直接暴力的对每个行都进行一次计数的话太费时间。所以只要对改变的点的所在行进行计数一下,然后与其他没变的行来比较大小就可以了。
#include<stdio.h> #include<string.h> int main() { int n,m,q,i,j,k,map[505][505],row,column; int maxi=0,t=0; int each[505]; while(scanf("%d%d%d",&n,&m,&q)!=EOF) { for(i=1;i<=n;i++) for(j=1;j<=m;j++) scanf("%d",&map[i][j]); for(i=1;i<=n;i++) { t=0; for(j=1;j<=m;j++) { t=0; if(map[i][j])t++; else continue; for(k=j;k<m;k++) { if(map[i][k]==map[i][k+1]&&map[i][k])t++; else break; } if(each[i]<t)each[i]=t; } } while(q--) { maxi=0; scanf("%d%d",&row,&column); map[row][column]=!map[row][column]; each[row]=0; for(j=1;j<=m;j++) { t=0; if(map[row][j])t++; else continue; for(k=j;k<m;k++) { if(map[row][k]==map[row][k+1]&&map[row][k])t++; else break; } if(each[row]<t)each[row]=t; } for(i=1;i<=n;i++) if(maxi<each[i])maxi=each[i]; printf("%d\n",maxi); } } return 0; }