国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

376. Wiggle Subsequence -Medium

2019-11-14 10:17:00
字體:
來源:轉載
供稿:網友

Question

A sequence of numbers is called a wiggle sequence if the differences between successive numbers strictly alternate between positive and negative. The first difference (if one exists) may be either positive or negative. A sequence with fewer than two elements is trivially a wiggle sequence.

For example, [1,7,4,9,2,5] is a wiggle sequence because the differences (6,-3,5,-7,3) are alternately positive and negative. In contrast, [1,4,7,2,5] and [1,7,4,5,5] are not wiggle sequences, the first because its first two differences are positive and the second because its last difference is zero.

Given a sequence of integers, return the length of the longest subsequence that is a wiggle sequence. A subsequence is obtained by deleting some number of elements (eventually, also zero) from the original sequence, leaving the remaining elements in their original order.

如果一個連續序列的數字之間的差值按照正負交替出現,這個序列稱為搖擺序列。搖擺序列的第一個差值既可以是正也可以是負。兩個元素的序列也稱為搖擺序列。給出一個正整數序列,返回最長搖擺子序列的長度。(子序列允許通過刪除一些元素得到剩余的序列)

Example

Input: [1,7,4,9,2,5] Output: 6 The entire sequence is a wiggle sequence.


Input: [1,17,5,10,13,15,10,5,16,8] Output: 7 There are several subsequences that achieve this length. One is [1,17,10,13,10,16,8].


Input: [1,2,3,4,5,6,7,8,9] Output: 2

Solution

這道題用dp解。思路如下:每當新加入一個序列中的元素,只會有3種狀態

nums[i] > nums[i - 1],即向上搖擺nums[i] < nums[i - 1],即向下搖擺nums[i] = nums[i - 1],不搖擺

那么我們需要每次加入新元素時分別記錄向上搖擺up和向下搖擺down的最長序列的長度

如果向上搖擺,up = down + 1如果向下搖擺,down = up + 1如果不搖擺,跳過class Solution(object): def wiggleMaxLength(self, nums): """ :type nums: List[int] :rtype: int """ if len(nums) == 0: return 0 up, down = 1, 1 for index_n in range(1, len(nums)): if nums[index_n] > nums[index_n - 1]: up = down + 1 elif nums[index_n] < nums[index_n - 1]: down = up + 1 return max(down, up)
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 交口县| 平遥县| 淮安市| 烟台市| 宽城| 道真| 阜新| 门源| 新津县| 阿尔山市| 本溪市| 邮箱| 乌恰县| 东阳市| 惠来县| 溆浦县| 泽库县| 稻城县| 伊春市| 阿图什市| 南岸区| 和顺县| 江孜县| 武鸣县| 马鞍山市| 兴仁县| 铜山县| 南丹县| 沂南县| 大理市| 乌兰察布市| 原平市| 高雄县| 曲阳县| 许昌县| 宣武区| 天台县| 错那县| 司法| 静乐县| 新昌县|