0-1矩阵

问题描述
查找一个只包含0和1的矩阵中每行最长的连续1序列。
输入说明
输入第一行为两个整数m和n(0<=m,n<=100)表示二维数组行数和列数,其后为m行数据,每行n个整数(0或1),输入数据中不会出现同一行有两个最长1序列的情况。
输出说明
找出每一行最长的连续1序列,输出其起始位置(从0开始计算)和结束位置(从0开始计算),如果这一行没有1则输出两个-1,然后换行。
输入样例
5 6
1 0 0 1 1 0
0 0 0 0 0 0
1 1 1 1 1 1
1 1 1 0 1 1
0 0 1 1 0 0

输出样例
3 4
-1 -1
0 5
0 2
2 3

#include
#include
#include
#include
#include
#include
using namespace std;
int main()
{
	int m,n;
	int a[101][101]={0};
	cin>>m>>n;
	for(int i=0;i<m;i++)
	{
		for(int j=0;j<n;j++)
		cin>>a[i][j];
	}
	for(int i=0;i<m;i++)
	{
		int sign=0;
		int count=0;
		int location=0;
		int max=0;
		for(int j=0;j<=n;j++)
		{
			if(a[i][j]==1)
			{
				count++;
				sign=1;
			}
			else 
			{
				if(count>max)
				{
					max=count;
					location=j;
				}
				count=0;
			}
		}
		if(sign) printf("%d %d\n",location-max,location-1);
		else puts("-1 -1");
	}
	return 0;
}

你可能感兴趣的:(C++)