由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 面试问题请教
相关主题
Amazon算法问题请教问个写程序的问题,matrix max ones
请教一道算法题The time complexity on finding the kth largest element in a
问个算法题Amazon algorithm question, google
刚看了leetcode 上的maximum rectangular sub matrix那题也来一道矩阵题
An interview problem: largest submatrix抛砖引玉:Careercup 150题中的错误
bit manipulation 小题一道热门的 Google 面试题
问一个careercup上的题目请教CareerCup中的ROBOT MATRIX PATH那道题
讨论一下careercup上的一道题,找周边全是1的最大子方阵请教一道careercup 150上的题
相关话题的讨论汇总
话题: matrix话题: find话题: largest话题: y0话题: x0
进入JobHunting版参与讨论
1 (共1页)
n*******s
发帖数: 482
1
you are given a M x N matrix with 0's and 1's
find the matrix with largest number of 1,
1. find the largest square matrix with 1's
2. Find the largest rectangular matrix with 1's
没想到很有效的办法。大家见集思广益~
b*********n
发帖数: 1258
2
where do u see this?

【在 n*******s 的大作中提到】
: you are given a M x N matrix with 0's and 1's
: find the matrix with largest number of 1,
: 1. find the largest square matrix with 1's
: 2. Find the largest rectangular matrix with 1's
: 没想到很有效的办法。大家见集思广益~

h*********i
发帖数: 116
3
DP?
h*********i
发帖数: 116
4
我好像写过这道题的code。

【在 n*******s 的大作中提到】
: you are given a M x N matrix with 0's and 1's
: find the matrix with largest number of 1,
: 1. find the largest square matrix with 1's
: 2. Find the largest rectangular matrix with 1's
: 没想到很有效的办法。大家见集思广益~

n*******s
发帖数: 482
5
careercup::amazon
我笨,感觉是DP,不过没建出递归模型。
q******u
发帖数: 46
6
1有O(MN)的算法,关键就是用integral image只要O(1)就能check一个square or recta
ngle是不是满的。
具体做法令B(x0,y0)=sum_{x<=x0,y<=y0}A(x,y), A(x,y)=0/1。这样B(x0,y0)+B(x1,y1
)-B(x0,y1)-B(x1,y0)就是(x0,y0,x1,y1)中1的个数。
问题1就沿对角线y-x=k扫描,用DP可以在linear时间内解决。其中用到上面的trick去c
heck。

【在 n*******s 的大作中提到】
: you are given a M x N matrix with 0's and 1's
: find the matrix with largest number of 1,
: 1. find the largest square matrix with 1's
: 2. Find the largest rectangular matrix with 1's
: 没想到很有效的办法。大家见集思广益~

s*********l
发帖数: 103
7
http://www.spellscroll.com/questionfull/275/

【在 n*******s 的大作中提到】
: you are given a M x N matrix with 0's and 1's
: find the matrix with largest number of 1,
: 1. find the largest square matrix with 1's
: 2. Find the largest rectangular matrix with 1's
: 没想到很有效的办法。大家见集思广益~

1 (共1页)
进入JobHunting版参与讨论
相关主题
请教一道careercup 150上的题An interview problem: largest submatrix
Find largest common subtreebit manipulation 小题
求Leetcode OJ Maximal Rectangle的n^2解法问一个careercup上的题目
我已经笨死了笨死了笨死了讨论一下careercup上的一道题,找周边全是1的最大子方阵
Amazon算法问题请教问个写程序的问题,matrix max ones
请教一道算法题The time complexity on finding the kth largest element in a
问个算法题Amazon algorithm question, google
刚看了leetcode 上的maximum rectangular sub matrix那题也来一道矩阵题
相关话题的讨论汇总
话题: matrix话题: find话题: largest话题: y0话题: x0