摘要:算法复杂度思路贪心算法,先能组成的数的组合,然后针对每一个组合,考虑每一个数组能够组成的最大的位或者位数。对不同组合生成的最大数进行比较,得到所能得到的最大的值。代码的方法去找这个数。
LeetCode[321] Create Maximum Number
Greedy算法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]
复杂度
O(k * (m + n)^3), O(k)
思路
贪心算法,先能组成k的数的组合,然后针对每一个组合(k = m + n),考虑每一个数组能够组成的最大的m位(或者n位)数。将这两个数组形成的数进行merge,得到针对这个组合下能得到的最大的数,然后记录下来。对不同组合生成的最大数进行比较,得到所能得到的最大的值。
代码
public int[] maxNumber(int[] nums1, int[] nums2, int k) { Listlist = 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; }
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/66237.html
摘要:题目要求思路和代码首先采用分治法的思路,我们知道这个数字中,必然有个数组来自,而剩下的个数字必然来自。那么问题变成从中获取个数,这个数构成的数字最大,且这个数字的相对位置不变。 题目要求 Given two arrays of length m and n with digits 0-9 representing two numbers. Create the maximum numb...
摘要:题目意思从两个数组中,保持元素相对位置不变的前提下,找到一个长度为的最大数组。我们每次取两个数组中剩下的最靠前元素里较大的一个。合并之前结果,得到一个长度为的最大数组。三个不同的函数分别用于取,合并,比较。 Given two arrays of length m and n with digits 0-9 representing two numbers. Create the m...
摘要:题目链接这题就遍历所有可能的切分点然后和求到最大值,和分别是有个数时候的最大值,和有个数时的最大值。部分比较简单,来看求最大值的部分。设产生的最大值是,的是,的是。现在已经选了了个,最大值是,用了个数,现在指向。 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 题。 一 目录 不折腾的前端,和咸鱼有什么区别...
阅读 846·2021-11-23 09:51
阅读 1037·2021-11-15 17:57
阅读 1635·2021-09-22 15:24
阅读 785·2021-09-07 09:59
阅读 2184·2019-08-29 15:10
阅读 1792·2019-08-29 12:47
阅读 724·2019-08-29 12:30
阅读 3340·2019-08-26 13:51