由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 问一下那道买卖股票的题目
相关主题
一道面试算法题[合集] 想成为嵌入式程序员应知道的0x10个基本问题 zz
问个面试题google 首轮面世汇报
请教一道Google面试题Google电话面试题目
练练DP吧,呵呵[合集] Google电话面试题目
select k to maximize the minimum职业杯另外一道
zenefits店面(已挂)问一道题
我也来问问LC的Maximal Rectangle再来一道简单的bit运算题
想成为嵌入式程序员应知道的0x10个基本问题 zz那道0-1矩阵找最大的全1矩形题
相关话题的讨论汇总
话题: stock话题: find话题: buying话题: given话题: 解么
进入JobHunting版参与讨论
1 (共1页)
w*****3
发帖数: 101
1
Given array of integers representing historic stock prices. Find the buying
and selling points to maximize the profit. (original: You can hold the stock
for only 30 days maximum.)
有线性解么?
s*****n
发帖数: 5488
2
转换为某道著名的题。

buying
stock

【在 w*****3 的大作中提到】
: Given array of integers representing historic stock prices. Find the buying
: and selling points to maximize the profit. (original: You can hold the stock
: for only 30 days maximum.)
: 有线性解么?

w*****3
发帖数: 101
3
如果没有30天限制,很容易做,
有30天限制的话,
31天开始,就必须更新当前最小值,然后求与当前的值的差,然后更新max
现在的问题是如何effcient 更新当前最小值,
我只想到用个min heap来保存当前最小值,更新需要lg30,可行么
w*****3
发帖数: 101
4
不解,展开说说?

【在 s*****n 的大作中提到】
: 转换为某道著名的题。
:
: buying
: stock

a*********0
发帖数: 2727
5
有固定资金?

buying
stock

【在 w*****3 的大作中提到】
: Given array of integers representing historic stock prices. Find the buying
: and selling points to maximize the profit. (original: You can hold the stock
: for only 30 days maximum.)
: 有线性解么?

w*****3
发帖数: 101
6
我的理解是资金不限,先买后卖,各一次吧
s*****n
发帖数: 5488
7
programming pearl上最著名的。

【在 w*****3 的大作中提到】
: 不解,展开说说?
a*********0
发帖数: 2727
8
find max sum?

【在 s*****n 的大作中提到】
: programming pearl上最著名的。
1 (共1页)
进入JobHunting版参与讨论
相关主题
那道0-1矩阵找最大的全1矩形题select k to maximize the minimum
Search in a sorted, rotated listzenefits店面(已挂)
那道经典的求和问题我也来问问LC的Maximal Rectangle
一道program challenge的题想成为嵌入式程序员应知道的0x10个基本问题 zz
一道面试算法题[合集] 想成为嵌入式程序员应知道的0x10个基本问题 zz
问个面试题google 首轮面世汇报
请教一道Google面试题Google电话面试题目
练练DP吧,呵呵[合集] Google电话面试题目
相关话题的讨论汇总
话题: stock话题: find话题: buying话题: given话题: 解么