由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 我也遇到leetcode上Run Time Error,但在自己的机子能通过
相关主题
请教一个DP解法leetcode里Best Time to Buy and Sell Stock III怎么做?
Best Time to Buy and Sell Stock III怎么能证明或者保证两个区间没有相交?Best Time to Buy and Sell Stock 出三了。。。
Leetcode 上面的 Best Time to Buy and Sell Stock III做了一下 Google 的 Best Time to Buy and Sell Stock II
关于leetcode上那个买卖股票II的问题问一个java的函数调用问题
Best Time to Buy and Sell Stock II这么简单?Leetcode 最新题, 搞不懂
有个很简单的程序但是有segmentation fault是问啥像我这种情况是不是就不用考虑FLAGMT之类的了?
请问为什么这个程序会出现RunTime ErrorDropbox电面
[solved]stock这题目我 自己调试没问题,为什么leetcode总过不去leetcode上遇到的问题
相关话题的讨论汇总
话题: int话题: buy话题: time话题: prices话题: sell
进入JobHunting版参与讨论
1 (共1页)
r*******n
发帖数: 3020
1
解决这个问题的同学说一声。
我用ubuntu, gcc 4.6.3
a******e
发帖数: 710
2
请问能说一下是哪道题么?最好能把code贴出来

【在 r*******n 的大作中提到】
: 解决这个问题的同学说一声。
: 我用ubuntu, gcc 4.6.3

r*******n
发帖数: 3020
3
Best Time to Buy and Sell Stock III

int maxProfit(vector &prices) {
int sum =0;
int max_profit;
int times=2;
while(prices.size()>1 && times-->0){
int buy=0;
int sell=0;
max_profit=0;
for(int i=1; i if(prices[buy]>prices[i]){
buy=i;
}
int cur_diff = prices[i]-prices[buy];
if(cur_diff>max_profit){
max_profit=cur_diff;
sell=i;
}
}
sum += max_profit;

prices.erase(prices.begin()+buy);
prices.erase(prices.begin()+sell-1);

}
return sum;
}

【在 a******e 的大作中提到】
: 请问能说一下是哪道题么?最好能把code贴出来
a******e
发帖数: 710
4
没看懂 -_-!
lz能大概讲讲思路么~
r*******n
发帖数: 3020
5
运行 Best Time to Buy and Sell Stock I 两次
第一次运行完把 把相应的最小值和最大值从prices里删掉,
再进行第二次。
我不确定这么做对,但是【1,2,4】这个case没有通过说run time error
我在自己的机子上能出结果,结果是3

【在 a******e 的大作中提到】
: 没看懂 -_-!
: lz能大概讲讲思路么~

a******e
发帖数: 710
6
You may not engage in multiple transactions at the same time (ie, you must
sell the stock before you buy again)
我不确定能不能在同一天买卖
r*******n
发帖数: 3020
7
错了的话,应该给wrong answer而不是run time error.

【在 a******e 的大作中提到】
: You may not engage in multiple transactions at the same time (ie, you must
: sell the stock before you buy again)
: 我不确定能不能在同一天买卖

1 (共1页)
进入JobHunting版参与讨论
相关主题
leetcode上遇到的问题Best Time to Buy and Sell Stock II这么简单?
leetcode pow runtime error??有个很简单的程序但是有segmentation fault是问啥
求确认请问为什么这个程序会出现RunTime Error
leetcode OJ Internal error[solved]stock这题目我 自己调试没问题,为什么leetcode总过不去
请教一个DP解法leetcode里Best Time to Buy and Sell Stock III怎么做?
Best Time to Buy and Sell Stock III怎么能证明或者保证两个区间没有相交?Best Time to Buy and Sell Stock 出三了。。。
Leetcode 上面的 Best Time to Buy and Sell Stock III做了一下 Google 的 Best Time to Buy and Sell Stock II
关于leetcode上那个买卖股票II的问题问一个java的函数调用问题
相关话题的讨论汇总
话题: int话题: buy话题: time话题: prices话题: sell