线段树的优点:
O(logn)时间内,在一段区间中求最大最小值
线段树的特征:
线段树的操作:
线段树的查询: O(logn)
线段树的建立: O(n)
线段树的更新: O(logn)
问题特征:
构建形式
- 下标作为建立区间
- 值作为建立区间
Python:
线段树的优点:
O(logn)时间内,在一段区间中求最大最小值
线段树的特征:
线段树的操作:
线段树的查询: O(logn)
线段树的建立: O(n)
线段树的更新: O(logn)
问题特征:
构建形式
Python:
[每日一题] (Best Time to Buy and Sell Stock with Cooldown)
Say you have an array for which the ith element is the price of a given stock on day i.
Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie, buy one and sell one share of the stock multiple times) with the following restrictions:
You may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again).
After you sell your stock, you cannot buy stock on next day. (ie, cooldown 1 day)
状态转移矩阵为:
free = max(free, cool) # 当前free的最优解由上一时间free的最优解和cool的最优解得出
have = max(have, free-p) # 当前have的最优解由上一时间持有股票时的最优解和上一时间空闲而这一时间购买股票的最优解得出
cool = have + p #当前cool的最优解由上一时间持有股票的最优解再在这一时间卖出得出
Python:
[每日一题] (A+B-)
给出两个字符串,s1和s2。s2中的+表示前面的字符重复2次,-代表前面的字符重复4次。问题是求s1中有多少个连续或不连续的s2。
例子: s1 = “aaabbbb” , s2 = “a+b-“
输出: 3
Python: