Leetcode-376Wiggle Subsequence

376. Wiggle Subsequence

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.

Examples:

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

Follow up:
Can you do it in O(n) time?

题解:

一个整数序列,如果两个相邻元素的差恰好正负(负正)交替出现,则该序列被称为摇摆序列;小于两个元素的序列直接为摇摆序列;
本题输入一个序列,求出该序列中,满足摇摆序列定义的最长子序列的长度。
我们以 [1,2,7,4,3,9,2,2,5]为例:
满足摇摆序列定义的最长子序列为:[1,7,3,9,2,5]
贪心的思想来解决这个问题:
从元素1开始,相邻的两元素依次进行比较;我们发现,元素2比1大,元素7比2大,摇摆序列要求满足正负(负正)交替出现,明显取最大的元素7时更容易得到更多的比7小的数;所以当元素递增时,取最大的元素是最优的策略
同理,当元素递减时,取最小的元素是最优的策略,因为这样可以尽可能多的获得比该元素大的数;
思路确定了,我们要怎么统计最长子序列的长度呢?我们发现,因为所得到的摇摆序列肯定是满足正负(负正)交替出现的,所以当元素递增状态切换到元素递减状态时,增加了一个子序列元素;所以当元素递减状态切换到元素递增状态时,增加了一个子序列元素;
基于以上规律,我们决定使用状态机来解决统计子序列长度的问题;

image.png

如图,对于序列[1,2,7,4,3,9,2,2,5]:
count = 0:start(初始状态):元素1
count = 1:start(初始状态)->up(递增状态):元素1到元素2
count = 2:up(递增状态)->down(递减状态):元素7到元素4
count = 3:down(递减状态)->up(递增状态):元素3到元素9
count = 4:up(递增状态)->down(递减状态):元素9到元素2
count = 5:down(递减状态)->up(递增状态):元素2到元素5
状态总共切换了5次,总共有6个元素,序列为[1,7,3,9,2,5];
注:相邻元素相等时不会影响状态变化,无视即可;

My Solution(C/C++完整实现):

#include <cstdio>
#include <iostream>
#include <vector>

using namespace std;

class Solution {
public:
    int wiggleMaxLength(vector<int> &nums) {
        int count = 1;
        int state = 0;
        //int value = nums[0];
        for (int i = 1; i < nums.size(); i++) {
            if (nums[i - 1] < nums[i]) {
                if (state != 1) {
                    count += 1;
                    state = 1;
                }
            }
            else if (nums[i - 1] > nums[i]) {
                if (state != -1) {
                    count += 1;
                    state = -1;
                }
            }
        }
        return count;
    }
};

int main() {
    Solution s;
    vector<int> nums;
    nums.push_back(1);
    nums.push_back(7);
    nums.push_back(4);
    nums.push_back(9);
    nums.push_back(9);
    nums.push_back(2);
    nums.push_back(5);
    printf("%d\n", s.wiggleMaxLength(nums));
    getchar();
    return 0;
}

结果:

6

My Solution(Python):

class Solution:
    def wiggleMaxLength(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        if len(nums) == 0:
            return 0
        state = 0
        judge_num = nums[0]
        result = 1
        # min_num = nums[0]
        for i in range(1, len(nums)):
            if nums[i] > judge_num:
                judge_num = nums[i]
                if state != 1:
                    result += 1
                    state = 1
            if nums[i] < judge_num:
                judge_num = nums[i]
                if state != -1:
                    result += 1
                    state = -1
        return result

Reference:

class Solution:
    def wiggleMaxLength(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        p, q = 1, 1
        for i in range(1, len(nums)):
            if nums[i] > nums[i-1]:
                p = q + 1
            if nums[i] < nums[i-1]:
                q = p + 1
        return min(max(p, q), len(nums))
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,496评论 6 501
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,407评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,632评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,180评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,198评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,165评论 1 299
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,052评论 3 418
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,910评论 0 274
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,324评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,542评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,711评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,424评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,017评论 3 326
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,668评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,823评论 1 269
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,722评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,611评论 2 353

推荐阅读更多精彩内容