找最大方阵

http://haixiaoyang.wordpress.com/category/dynamic-programming/

这个比求最大矩阵要方便多了,记录的是rec[i][j]矩阵边上的点的数目

//There is a square of n x n size which is comprised of n-square 1x1 squares. 
//Some of these 1x1 squares are colored. Find the biggest 
//sub square which is colored.  Also asked to extend it to find the biggest area rectangle

const int N = 5;
int FindLargestArea(bool A[N][N])
{
	int rec[N][N];
	int nRet = 0;
	for (int i = 0; i < N; i++)
	{
		rec[0][i] = A[0][i] ? 1 : 0;
		if (rec[0][i] > nRet)
			nRet = rec[0][i];
	}

	for (int i = 0; i < N; i++)
	{
		rec[i][0] = A[i][0] ? 1 : 0;
		if (rec[i][0] > nRet)
			nRet = rec[i][0];
	}

	for (int i = 1; i < N; i++)
	{
		for (int j = 1; j < N; j++)
		{
			if (!A[i][j])
			{
				rec[i][j] = 0;
				continue;
			}
			
			rec[i][j] = 1 + min(min(rec[i][j-1], rec[i-1][j]), rec[i-1][j-1]);

			//this is the first logic I write
			/*if (rec[i][j-1] == 0 || rec[i-1][j] == 0)
				rec[i][j] = 1;
			else
			{
				int nTmp = min(rec[i][j-1], rec[i-1][j]);

				//well, I missed the brackets leading to errors
				rec[i][j] = nTmp + (A[i-nTmp][j-nTmp] ? 1 : 0);
			}*/

			if (rec[i][j] > nRet)
				nRet = rec[i][j];
		}
	}

	return nRet;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值