300. Longest Increasing Subsequence

Given an unsorted array of integers, find the length of longest increasing subsequence.
For example,
Given [10, 9, 2, 5, 3, 7, 101, 18],
The longest increasing subsequence is [2, 3, 7, 101], therefore the length is 4. Note that there may be more than one LIS combination, it is only necessary for you to return the length.
Your algorithm should run in O(n2) complexity.
Follow up: Could you improve it to O(n log n) time complexity?

Solution1: regular DP

思路:
dp[i] is the length of the increasing subsequence ending up with nums[i], initialize: dp[i] is at least 1, formula: if nums[j] < nums[i] (0<=j<i) , then update dp[i] to be max(dp[j] + 1, dp[i]))

Solution2:DP tail數(shù)組 + binary search更新

思路:
tails is an array storing the smallest tail of all increasing subsequences with length i+1 in tails[i].
For example, say we have nums = [4,5,6,3], then all the available increasing subsequences are:

len = 1 : [4], [5], [6], [3] => tails[0] = 3
len = 2 : [4, 5], [5, 6] => tails[1] = 5
len = 3 : [4, 5, 6] => tails[2] = 6
We can easily prove that tails is a increasing array. Therefore it is possible to do a binary search in tails array to find the one needs update.

Each time we only do one of the two:

(1) if x is larger than all tails, append it, increase the size by 1
(2) if tails[i-1] < x <= tails[i], update tails[i]

Time Complexity: O(NlogN) Space Complexity: O(N)

Solution2.5:DP tail數(shù)組 + binary search更新 Round1

Time Complexity: O(NlogN) Space Complexity: O(N)

Solution1 Code:

class Solution {
    public int lengthOfLIS(int[] nums) {
        if (nums == null || nums.length == 0) return 0;
        //def: dp[i] represents the lenth of a increasing subsequence ending up with nums[i]
        int[] dp =new int[nums.length]; 
        int max = 1;
        //initialize
        for (int i = 0; i < nums.length; i++) {
            dp[i] = 1;
        }
        //formula
        for (int i = 1; i < nums.length; i++) {
            for (int j = 0; j < i; j++) {
                if (nums[i] > nums[j]) {
                    dp[i] = Math.max(dp[j] + 1, dp[i]);    
                }
            }
            max = Math.max(dp[i], max);
        }
        return max;       
    }
}

Solution2 Code:

class Solution {
    public int lengthOfLIS(int[] nums) {
        int[] dp = new int[nums.length];
        int len = 0;
        
        for(int x: nums) {
            int pos = Arrays.binarySearch(dp, 0, len, x);
            if(pos < 0) pos = -1 * pos - 1;
            dp[pos] = x;
            if(pos == len) len++;
        }
        
        return len;
    }
}

Solution2.5 Round1 Code:

class Solution {
    public int lengthOfLIS(int[] nums) {
        if(nums == null || nums.length == 0) return 0;
        
        int[] dp = new int[nums.length];
        dp[0] = nums[0];
        int valid_len = 1;
        
        for(int i = 0; i < nums.length; i++) {
            int pos = binary_sesarch(dp, nums[i], 0, valid_len - 1);
            dp[pos] = nums[i];
            
            if(pos == valid_len) {
                valid_len++;
            }
        }
        
        return valid_len;
        
    }
    
    private int binary_sesarch(int[] nums, int target, int left, int right) {
        while(left + 1 < right) {
            int mid = left + (right - left) / 2;
            if(nums[mid] == target) {
                return mid;
            }
            else if(nums[mid] < target) {
                left = mid;
            }
            else {
                right = mid;
            }
        }
        
        if(nums[left] >= target) {
            return left;
        }
        else if(nums[right] >= target) {
            return right;
        }
        else {
            return right + 1;
        }
    }
}
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末寇仓,一起剝皮案震驚了整個濱河市砰识,隨后出現(xiàn)的幾起案子酬屉,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件钮惠,死亡現(xiàn)場離奇詭異硼莽,居然都是意外死亡,警方通過查閱死者的電腦和手機宅此,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來爬范,“玉大人父腕,你說我怎么就攤上這事∏嗥伲” “怎么了璧亮?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵萧诫,是天一觀的道長。 經常有香客問我枝嘶,道長帘饶,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任群扶,我火速辦了婚禮及刻,結果婚禮上,老公的妹妹穿的比我還像新娘竞阐。我一直安慰自己缴饭,他們只是感情好,可當我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布馁菜。 她就那樣靜靜地躺著茴扁,像睡著了一般。 火紅的嫁衣襯著肌膚如雪汪疮。 梳的紋絲不亂的頭發(fā)上峭火,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天,我揣著相機與錄音智嚷,去河邊找鬼卖丸。 笑死,一個胖子當著我的面吹牛盏道,可吹牛的內容都是我干的稍浆。 我是一名探鬼主播,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼猜嘱,長吁一口氣:“原來是場噩夢啊……” “哼衅枫!你這毒婦竟也來了?” 一聲冷哼從身側響起朗伶,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤弦撩,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后论皆,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體益楼,經...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年点晴,在試婚紗的時候發(fā)現(xiàn)自己被綠了感凤。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡粒督,死狀恐怖陪竿,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情屠橄,我是刑警寧澤萨惑,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布捐康,位于F島的核電站,受9級特大地震影響庸蔼,放射性物質發(fā)生泄漏。R本人自食惡果不足惜贮匕,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一姐仅、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧刻盐,春花似錦掏膏、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至乙墙,卻和暖如春颖变,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背听想。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工腥刹, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人汉买。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓衔峰,卻偏偏與公主長得像,于是被迫代替她去往敵國和親蛙粘。 傳聞我的和親對象是個殘疾皇子垫卤,可洞房花燭夜當晚...
    茶點故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內容