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

資訊專欄INFORMATION COLUMN

leetcode373. Find K Pairs with Smallest Sums

Lavender / 3184人閱讀

摘要:題目要求兩個單調遞增的整數數組,現分別從數組和數組中取一個數字構成數對,求找到個和最小的數對。思路這題采用最大堆作為輔助的數據結構能夠完美的解決我們的問題。每從堆中取走一個數對,就插入,從而確保堆中的數對都可以從小到大遍歷到。

題目要求
You are given two integer arrays nums1 and nums2 sorted in ascending order and an integer k.

Define a pair (u,v) which consists of one element from the first array and one element from the second array.

Find the k pairs (u1,v1),(u2,v2) ...(uk,vk) with the smallest sums.

兩個單調遞增的整數數組,現分別從數組1和數組2中取一個數字構成數對,求找到k個和最小的數對。

思路

這題采用最大堆作為輔助的數據結構能夠完美的解決我們的問題。觀察數組我們可以看到,從nums1中任意取一個數字,其和nums2中的數字組成的最小數對一定是,同理,我們可以知道,的值一定比nums1[k], nums2[t]大。因此在優先隊列中,我們存儲所有的nums1中數字所能夠構成的最小數對。每從堆中取走一個數對,就插入,從而確保堆中的數對都可以從小到大遍歷到。

    public List kSmallestPairs(int[] nums1, int[] nums2, int k) {
        List result = new ArrayList();
        if(nums1.length == 0 || nums2.length == 0 || k == 0) return result;
        PriorityQueue heap = new PriorityQueue(new Comparator(){

            @Override
            public int compare(int[] o1, int[] o2) {
                return o1[0] + o1[1] - o2[0] - o2[1];
            }});
        
        for(int i = 0 ; i

想要了解更多開發技術,面試教程以及互聯網公司內推,歡迎關注我的微信公眾號!將會不定期的發放福利哦~

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

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

相關文章

  • 373. Find K Pairs with Smallest Sums

    摘要:題目鏈接先把一組里面和另外一組最小元素的組合放進,然后每次出和最小的,同時放進去有可能成為第二小的組合,即當前元素的下一個和元素的組合。 373. Find K Pairs with Smallest Sums 題目鏈接:https://leetcode.com/problems... greedy: 先把一組x里面和另外一組y最小元素的組合放進heap,然后每次poll出和最小的,同...

    wing324 評論0 收藏0
  • 373. Find K Pairs with Smallest Sums

    摘要:利用特點進行排序。我們需要構建一個數據結構,一個表示在的位置,一個表示在的位置,他們的和,用來排序。我們首先向里,和所有的元素的和。每次我們一組數,然后增加的會自然的進行排序。 Given nums1 = [1,7,11], nums2 = [2,4,6], k = 3 Return: [1,2],[1,4],[1,6] The first 3 pairs are returne...

    ningwang 評論0 收藏0
  • 378. Kth Smallest Element in a Sorted Matrix

    摘要:復雜度是,其中。這做法和異曲同工??戳司W上給的解法,沒有二分,二分的是結果。每次找到一個,然后求比它小的元素的個數,根據個數大于還是小于來二分。參考算的時候可以優化 378. Kth Smallest Element in a Sorted Matrix 題目鏈接:https://leetcode.com/problems... 求矩陣里面第k小的數,首先比較容易想到的是用heap來做...

    Y3G 評論0 收藏0
  • [LeetCode] Maximum Size Subarray Sum Equals k

    Problem Given an array nums and a target value k, find the maximum length of a subarray that sums to k. If there isnt one, return 0 instead. Note The sum of the entire nums array is guaranteed to fit ...

    MudOnTire 評論0 收藏0

發表評論

0條評論

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