MMD, 死在了longest contiguous increasing sub-array上了.# JobHunting - 待字闺中
j*g
1 楼
面官一出此题,俺窃喜,大笔一挥,O(n) one scan解法跃然纸上:
loop
if a[i] >= a[i + 1]
len = 1
else
len++
if len > max then max = len
etc.etc.
面官说有没有更快的。。。disaster自此开始...//省略5000字。。。直到面官把能提
醒的都提醒了才发现其中奥妙.
loop
if a[i] >= a[i + 1]
len = 1
else
len++
if len > max then max = len
etc.etc.
面官说有没有更快的。。。disaster自此开始...//省略5000字。。。直到面官把能提
醒的都提醒了才发现其中奥妙.