国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

LeetCode[321] Create Maximum Number

UsherChen / 942人閱讀

摘要:算法復雜度思路貪心算法,先能組成的數的組合,然后針對每一個組合,考慮每一個數組能夠組成的最大的位或者位數。對不同組合生成的最大數進行比較,得到所能得到的最大的值。代碼的方法去找這個數。

LeetCode[321] Create Maximum Number

Given two arrays of length m and n with digits 0-9 representing two

Create the maximum number of length k <= m + n from digits of

The relative order of the digits from the same array must be

Return an array of the k digits. You should try to optimize

time and space complexity.

Example 1: nums1 = [3, 4, 6, 5] nums2 = [9, 1, 2, 5, 8, 3] k = 5
return [9, 8, 6, 5, 3]

Example 2: nums1 = [6, 7] nums2 = [6, 0, 4] k = 5 return [6, 7, 6, 0,
4]

Example 3: nums1 = [3, 9] nums2 = [8, 9] k = 3 return [9, 8, 9]

Greedy算法

復雜度
O(k * (m + n)^3), O(k)

思路
貪心算法,先能組成k的數的組合,然后針對每一個組合(k = m + n),考慮每一個數組能夠組成的最大的m位(或者n位)數。將這兩個數組形成的數進行merge,得到針對這個組合下能得到的最大的數,然后記錄下來。對不同組合生成的最大數進行比較,得到所能得到的最大的值。

代碼

    public int[] maxNumber(int[] nums1, int[] nums2, int k) {
        List list = new LinkedList<>();
        int[] ans = new int[k];
        for(int i = 0; i <= k; i ++) {
            if(i <= nums1.length && k - i <= nums2.length) {
                int[] res = merge(maxNum(nums1, i), maxNum(nums2, k - i), k);
                if(larger(res, ans, 0, 0)) ans = res;
            }
        }
        return ans;
    }
    
    // find the larger array;
    // return true when res value >= ans calue;
    public boolean larger(int[] res, int[] ans, int r, int a) {
        while(r < res.length && a < ans.length && res[r] == ans[a]) {
            r ++;
            a ++;
        }
        return a == ans.length || (r < res.length && res[r] > ans[a]);
    }
    
    // find the max number that can be formed in the nums, with i digits.
    // use greedy的方法去找這個數。
    public int[] maxNum(int[] nums, int k) {
        int[] res = new int[k];
        int j = 0, n = nums.length;
        for(int i = 0; i < nums.length; i ++) {
            // 因為要保證順序,所以n - i > k - j, 同時,如果發現之前那一位比現在這一位要小的話,就replace成new value
            while(n - i + j > k && j > 0 && res[j - 1] < nums[i]) j --;
            if(j < k) res[j++] = nums[i];
        }
        return res;
    }
    
    // merge the two nums value that forms k digits;
    public int[] merge(int[] nums1, int[] nums2, int k) {
        int[] res = new int[k];
        int i = 0, j = 0;
        for(int index = 0; index < k; index ++) {
            // 關鍵比較的時候要這樣比較,不能直接取大的值,而是要取從這一位開始能夠組成最大的數的值。
            res[index] = larger(nums1, nums2, i, j) ? nums1[i ++] : nums2[j ++];
        }
        return res;
    }

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/66237.html

相關文章

  • leetcode 321. Create Maximum Number

    摘要:題目要求思路和代碼首先采用分治法的思路,我們知道這個數字中,必然有個數組來自,而剩下的個數字必然來自。那么問題變成從中獲取個數,這個數構成的數字最大,且這個數字的相對位置不變。 題目要求 Given two arrays of length m and n with digits 0-9 representing two numbers. Create the maximum numb...

    iamyoung001 評論0 收藏0
  • [leetcode]321. Create Maximum Number

    摘要:題目意思從兩個數組中,保持元素相對位置不變的前提下,找到一個長度為的最大數組。我們每次取兩個數組中剩下的最靠前元素里較大的一個。合并之前結果,得到一個長度為的最大數組。三個不同的函數分別用于取,合并,比較。 Given two arrays of length m and n with digits 0-9 representing two numbers. Create the m...

    codeGoogle 評論0 收藏0
  • 321. Create Maximum Number

    摘要:題目鏈接這題就遍歷所有可能的切分點然后和求到最大值,和分別是有個數時候的最大值,和有個數時的最大值。部分比較簡單,來看求最大值的部分。設產生的最大值是,的是,的是。現在已經選了了個,最大值是,用了個數,現在指向。 321. Create Maximum Number 題目鏈接:https://leetcode.com/problems... 這題就遍歷所有可能的切分點n然后mergen...

    Cc_2011 評論0 收藏0
  • LeetCode - 007 - 整數反轉(reverse-integer)

    摘要:詳細介紹將其他值轉成數字值。此方法更改數組的長度。詳細介紹解題思路首先,將傳入的數字轉換成字符串,并分割成數組。本許可協議授權之外的使用權限可以從處獲得。 Create by jsliang on 2019-05-19 09:42:39 Recently revised in 2019-05-19 16:08:24 Hello 小伙伴們,如果覺得本文還不錯,記得給個 star , 小伙伴們...

    venmos 評論0 收藏0
  • LeetCode 攻略 - 2019 年 7 月下半月匯總(100 題攻略)

    摘要:月下半旬攻略道題,目前已攻略題。目前簡單難度攻略已經到題,所以后面會調整自己,在刷算法與數據結構的同時,攻略中等難度的題目。 Create by jsliang on 2019-07-30 16:15:37 Recently revised in 2019-07-30 17:04:20 7 月下半旬攻略 45 道題,目前已攻略 100 題。 一 目錄 不折騰的前端,和咸魚有什么區別...

    tain335 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<