码迷,mamicode.com
首页 > 其他好文 > 详细

B - Mike and Fun

时间:2016-07-30 11:47:25      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

 

Description

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.

 

Input

The first line of input contains three integers nm 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.

 

Output

After each round, print the current score of the bears.

 

Sample Input

Input
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
Output
3
4
3
3
4

 

题意:

有n*m只萌熊做运♂动,有蒙眼和捂嘴两种表情,给出q个坐标,每个坐标对应的熊变换一下表情,求单行最长连续蒙眼熊的个数。

 

爆爆爆!!!

 

附AC代码:

#include<iostream>
#include<cstring>
#include<cmath>
using namespace std;

int a[510][510];

int main(){
    int n,m,q,x,y,ans;
    cin>>n>>m>>q;
    for(int i=1;i<=n;i++){
        for(int j=1;j<=m;j++){
            cin>>a[i][j];
        }
    }
    for(int i=0;i<q;i++){
        cin>>x>>y;
        a[x][y]=!a[x][y];//表情转换
        int MAXN=-1;
        for(int s=1;s<=n;s++){
             ans=0;
            for(int t=1;t<=m;t++){
                if(a[s][t]==0)
                    ans=0;
                else
                    ans++;
                    MAXN=max(MAXN,ans);//记录最大值
            }
        }
        cout<<MAXN<<endl;
    }
    return 0;
}

 

B - Mike and Fun

标签:

原文地址:http://www.cnblogs.com/Kiven5197/p/5720405.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!