题目要求:最多交易两次,并且只能买卖完之后再买。总思路:在数组中找一个适当的点i,使得profit之和最大。思路:1、从左往右扫描,left[i]记录包括i元素以内的左部的maxprofit,用Best Time to Buy and Sell Stock 1可得到。2、从右往左扫描,right[i...
分类:
其他好文 时间:
2014-08-31 13:13:21
阅读次数:
171
Say you have an array for which theithelement is the price of a given stock on dayi.If you were only permitted to complete at most one transaction (ie...
分类:
其他好文 时间:
2014-08-31 13:05:01
阅读次数:
176
Best FinancingTime Limit: 20000/10000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 148Accepted Submission(s): 35Probl...
分类:
其他好文 时间:
2014-08-31 11:51:11
阅读次数:
301
Go is one of the best tools out there today for heavy lifting and backend code. It’s my go to language when it’s time to bring out the big guns and I enjoy working with it immensely. That being ...
分类:
其他好文 时间:
2014-08-30 12:44:39
阅读次数:
223
1640: [Usaco2007 Nov]Best Cow Line 队列变换Time Limit:5 SecMemory Limit:64 MBSubmit:493Solved:253[Submit][Status]DescriptionFJ打算带着他可爱的N (1 ≤ N ≤ 2,000)头奶牛...
分类:
其他好文 时间:
2014-08-30 01:12:58
阅读次数:
317
Choose the best routeTime Limit: 1000msMemory Limit: 32768KBThis problem will be judged onHDU. Original ID:268064-bit integer IO format:%I64d Java cla...
分类:
其他好文 时间:
2014-08-29 17:30:58
阅读次数:
223
Graphics API的特点就是从名字上很难看出背后做了什么,所以会用和做到Best Pratice中间要经历很多曲折。昨天看了一下OpenGL中传输和更新Buffer的方法,发现了一些之前没有留意到的东西。在创建了Buffer对象之后,可以通过glBufferData/glBufferSubDa...
分类:
其他好文 时间:
2014-08-29 01:23:46
阅读次数:
507
Description
Alice and Bob are very smart guys and they like to play all kinds of games in their spare time. the most amazing thing is that they always find the best strategy, and that's why they fe...
分类:
其他好文 时间:
2014-08-28 16:55:48
阅读次数:
303
17.You configure AUTOBACKUP to ON in an RMAN session. When will RMAN back up the control file?
(Choose all that apply.)
A. When you run an RMAN BACKUP command
B. When you run an RMAN ALLOCATE comma...
分类:
其他好文 时间:
2014-08-28 00:53:58
阅读次数:
189
注意: 限制条件: 先买后卖(不同天)。
思想: 买了后,1. 若以后价格不变,不买不卖。 1. 更价格低,重新买。2. 价格升高,假定抛售,更新一下利润值。
思想:求出所有非递减序列两端绝对值之和。我贴在 leedcode 的代码和证明:
思想:动态规划。 记录下从各位置(含)开始之前...
分类:
其他好文 时间:
2014-08-27 16:00:18
阅读次数:
213