日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

找最大方阵

發布時間:2024/9/30 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 找最大方阵 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

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 rectangleconst 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 errorsrec[i][j] = nTmp + (A[i-nTmp][j-nTmp] ? 1 : 0);}*/if (rec[i][j] > nRet)nRet = rec[i][j];}}return nRet; }


總結

以上是生活随笔為你收集整理的找最大方阵的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。