首页 > 其他 > 详细

373. 查找和最小的K对数字

时间:2020-04-26 19:27:39      阅读:49      评论:0      收藏:0      [点我收藏+]
 1 class Solution 
 2 {
 3     struct cmp
 4     {
 5         bool operator ()(vector<int> &a, const vector<int> &b)
 6         {
 7             // < :大顶堆
 8             // > :小顶堆
 9             return a[0]+a[1] > b[0]+b[1];
10         }
11     };
12 public:
13     vector<vector<int>> kSmallestPairs(vector<int>& nums1, vector<int>& nums2, int k) 
14     {
15         priority_queue<vector<int>, vector<vector<int>>, cmp> pq;
16         for(auto n1:nums1)
17         {
18             for(auto n2:nums2)
19             { 
20                 pq.push({{n1,n2}});
21             }
22         }
23         while(!pq.empty())
24         {
25             cout << (pq.top())[0] << " " << (pq.top())[1] << endl;
26             pq.pop();
27         }
28         vector<vector<int>> res;
29         for(int i = 0; i < k; ++i)
30         {
31             if(pq.empty()) break;
32             res.push_back(pq.top());
33             pq.pop();
34         }
35         return res;
36     }
37 };

 

373. 查找和最小的K对数字

原文:https://www.cnblogs.com/yuhong1103/p/12781645.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!