Codeforces Round #305 (Div. 2) B
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.
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
3
4
求每次更改连续1的最长长度,我们可以只记录发生更改的一行,然后遍历所有行就好。
(不过貌似可以每次都遍历一次也能AC,不过我超时了)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | #include<iostream> #include<stdio.h> #include<algorithm> using namespace std; int main() { int n,m,t; int mp[510][510]; // int maxn=-1; int d[510]; cin>>n>>m>>t; for ( int i=1; i<=n; i++) { int num=0; int maxn=-1; for ( int j=1; j<=m; j++) { cin>>mp[i][j]; } for ( int j=1; j<=m; j++) { if (mp[i][j]==1) { num++; maxn=max(num,maxn); } else { maxn=max(num,maxn); num=0; } } d[i]=maxn; // cout<<d[i]<<endl; } while (t--) { // int MAX=-1; int x,y; cin>>x>>y; // mp[x][y]=~mp[x][y]; if (mp[x][y]) { mp[x][y]=0; } else { mp[x][y]=1; } int sum=0; int MAX=-1; for ( int j=1;j<=m;j++) { if (mp[x][j]) { sum++; MAX=max(sum,MAX); } else { MAX=max(sum,MAX); sum=0; } } d[x]=MAX; int MMAX=-1; // cout<<MAX<<endl; for ( int i=1;i<=n;i++) { MMAX=max(MMAX,d[i]); } cout<<MMAX<<endl; } return 0; } |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· AI 智能体引爆开源社区「GitHub 热点速览」
· 从HTTP原因短语缺失研究HTTP/2和HTTP/3的设计差异
· 三行代码完成国际化适配,妙~啊~