摘要:題目意思從兩個數組中,保持元素相對位置不變的前提下,找到一個長度為的最大數組。我們每次取兩個數組中剩下的最靠前元素里較大的一個。合并之前結果,得到一個長度為的最大數組。三個不同的函數分別用于取,合并,比較。
Given two arrays of length m and n with digits 0-9 representing two numbers. Create the maximum number of length k <= m + n from digits of the two. The relative order of the digits from the same array must be preserved. Return an array of the k digits. You should try to optimize your 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]
題目意思:從兩個數組中,保持元素相對位置不變的前提下,找到一個長度為k的最大數組。
在例2中,得到長度為5的數組只有一種可能,就是兩個全取nums1和nums2。我們每次取兩個數組中剩下的最靠前元素里較大的一個。這樣得到的就是最大數組。
我們可以分三步得到正確結果:
1:從nums1里取i個元素組成最大數組,從nums2里取k-i個元素組成最大數組。
2:合并之前結果,得到一個長度為k的最大數組。
3:對于不同長度分配的情況,比較每次得到的長度為k的最大數組,返回最大的一個。
三個不同的函數分別用于取,合并,比較。
public class Solution { public int[] maxNumber(int[] nums1, int[] nums2, int k) { int n = nums1.length; int m = nums2.length; int[] ans = new int[k]; for(int i= Math.max(0, k-m); i<=k && i <= n ; i++){ int[] candidate = merge(maxArray(nums1,i), maxArray(nums2, k-i), k); if(greater(candidate, 0, ans, 0)) ans = candidate; } return ans; } public int[] merge(int[] nums1, int[] nums2, int k){ int[] ans = new int[k]; for(int i=0, j=0, r=0; rnums2[j]); } public int[] maxArray(int[] nums, int k){ int n = nums.length; int[] ans = new int[k]; for(int i=0, j=0; i < n; i++){ while(n-i> k-j && j > 0 && nums[i] > ans[j-1]) j--; if(j
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/66288.html
摘要:算法復雜度思路貪心算法,先能組成的數的組合,然后針對每一個組合,考慮每一個數組能夠組成的最大的位或者位數。對不同組合生成的最大數進行比較,得到所能得到的最大的值。代碼的方法去找這個數。 LeetCode[321] Create Maximum Number Given two arrays of length m and n with digits 0-9 representing ...
摘要:題目要求思路和代碼首先采用分治法的思路,我們知道這個數字中,必然有個數組來自,而剩下的個數字必然來自。那么問題變成從中獲取個數,這個數構成的數字最大,且這個數字的相對位置不變。 題目要求 Given two arrays of length m and n with digits 0-9 representing two numbers. Create the maximum numb...
摘要:題目鏈接這題就遍歷所有可能的切分點然后和求到最大值,和分別是有個數時候的最大值,和有個數時的最大值。部分比較簡單,來看求最大值的部分。設產生的最大值是,的是,的是?,F在已經選了了個,最大值是,用了個數,現在指向。 321. Create Maximum Number 題目鏈接:https://leetcode.com/problems... 這題就遍歷所有可能的切分點n然后mergen...
摘要:詳細介紹將其他值轉成數字值。此方法更改數組的長度。詳細介紹解題思路首先,將傳入的數字轉換成字符串,并分割成數組。本許可協議授權之外的使用權限可以從處獲得。 Create by jsliang on 2019-05-19 09:42:39 Recently revised in 2019-05-19 16:08:24 Hello 小伙伴們,如果覺得本文還不錯,記得給個 star , 小伙伴們...
摘要:月下半旬攻略道題,目前已攻略題。目前簡單難度攻略已經到題,所以后面會調整自己,在刷算法與數據結構的同時,攻略中等難度的題目。 Create by jsliang on 2019-07-30 16:15:37 Recently revised in 2019-07-30 17:04:20 7 月下半旬攻略 45 道題,目前已攻略 100 題。 一 目錄 不折騰的前端,和咸魚有什么區別...
閱讀 2289·2021-11-24 09:38
閱讀 1986·2021-11-22 14:44
閱讀 1150·2021-07-29 13:48
閱讀 2615·2019-08-29 13:20
閱讀 1115·2019-08-29 11:08
閱讀 2046·2019-08-26 10:58
閱讀 1264·2019-08-26 10:55
閱讀 3149·2019-08-26 10:39