天码行空
2016年8月27日星期六
Maximum size square sub-matrix with all 1s
Solution
dp[i][j] means the maximum size that ends with arr[i][j]
dp[i][j] = min(
dp
[i][j-1],
dp
[i-1][j],
dp
[i-1][j-1]) + 1
没有评论:
发表评论
较新的博文
较早的博文
主页
订阅:
博文评论 (Atom)
没有评论:
发表评论