由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Quant版 - [合集] 精华区n*n grid search log(n)算法
相关主题
[合集] NxN行列有序的矩阵查找一个数,如何O(N)时间? (转载)[合集] 申请Quant版斑竹 (转载)
[合集] 请教一个期望值还有一个积分的问题,牛人给点提示也好,谢谢[合集] screwed my first phone interview
[合集] 这行是PhD好找工作还是MFE好找呢?[合集] 一个关于猎头的问题
[合集] 一道概率题[合集] 问个比较弱的
[合集] cs ph.d转quant有什么优势吗[合集] Price
[合集] 问个概率题,牛人们过来看看[合集] assume W(t) is a standard Brownian motion
[合集] 大家都是怎样谈薪水的?[合集] 问个Excel+VBA的问题
[合集] 问条题[合集] question on call/put.
相关话题的讨论汇总
话题: log话题: jiahe话题: search话题: unordered话题: linear
进入Quant版参与讨论
1 (共1页)
B*********h
发帖数: 800
1
☆─────────────────────────────────────☆
jiahe (JiaHe) 于 (Tue May 15 11:43:09 2007) 提到:
以前的讨论不知道有没有O(log(n))的定论。
下面是我的解法,请指正。
robertt的解答大家可以找到,O(m+n)
不过这里是 n*n 的 square matrix
1. $A_{i,i} 2. if $A_{i,i} 3. if $x > A_{i+1,i+1}$, $x\in A\\A_{[i+1,n],[i+1,n]}$
4. if $A_{i,i} 5. searching for $i$ is $O(log(n))$, search in $[i,n]$ is also $O(log(n))$.
3 log(n) in total.
☆────────────────────────────────
c*****e
发帖数: 38
2
oh, for this, actually linear is the lower bound.
the proof is a reduction to search an element in an unordered array.
observe that one diagonal is unordered.
if you could do this in less than linear, you would be able to search an
element in unordered array in linear.
c*****e
发帖数: 38
3
oh, for this, actually linear is the lower bound.
the proof is a reduction to search an element in an unordered array.
observe that one diagonal is unordered.
if you could do this in less than linear, you would be able to search an
element in unordered array in linear.
k****z
发帖数: 550
4
LZ的解法不对,错在第2,3步。
每次和主对角线上的元素比较,结果并不能把x限定在一个sub-block里面。反之,每次
只是把x *排除* 出一个sub-block,但还剩下三个sub-block。可以想象,随着sub-
block的尺寸越来越小,sub-block的数量确实越来越多了。
LZ的算法我曾经在一次面试中想到,但是我又立刻证明了这个应该是O(NlogN)的算法。
(不是严格的证明)
最快还是O(N)的算法。
1 (共1页)
进入Quant版参与讨论
相关主题
[合集] question on call/put.[合集] cs ph.d转quant有什么优势吗
[合集] A brainteaser question (转载)[合集] 问个概率题,牛人们过来看看
[合集] 面试问题 (转载)[合集] 大家都是怎样谈薪水的?
[合集] A brain teaser question[合集] 问条题
[合集] NxN行列有序的矩阵查找一个数,如何O(N)时间? (转载)[合集] 申请Quant版斑竹 (转载)
[合集] 请教一个期望值还有一个积分的问题,牛人给点提示也好,谢谢[合集] screwed my first phone interview
[合集] 这行是PhD好找工作还是MFE好找呢?[合集] 一个关于猎头的问题
[合集] 一道概率题[合集] 问个比较弱的
相关话题的讨论汇总
话题: log话题: jiahe话题: search话题: unordered话题: linear