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

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

376. Wiggle Subsequence -Medium

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

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)
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 英德市| 亳州市| 洞头县| 茌平县| 定州市| 栾川县| 太保市| 垦利县| 万州区| 正镶白旗| 正阳县| 甘洛县| 甘孜县| 六盘水市| 正定县| 基隆市| 宝丰县| 中超| 枣阳市| 合水县| 金山区| 舞钢市| 海南省| 乌兰县| 罗山县| 德格县| 周口市| 寿宁县| 舟山市| 长乐市| 故城县| 岳普湖县| 宜阳县| 克拉玛依市| 谢通门县| 桂林市| 柏乡县| 柏乡县| 区。| 蓝山县| 九龙县|