forked from luliyucoordinate/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
0023.cpp
46 lines (43 loc) · 1.07 KB
/
0023.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <string>
#include <iostream>
#include <vector>
#include <functional>
#include <queue>
#include <deque>
using namespace std;
// Definition for singly-linked list.
struct ListNode
{
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
static int x = []() {std::ios::sync_with_stdio(false); cin.tie(0); return 0; }();
class Solution
{
public:
ListNode* mergeKLists(vector<ListNode*>& lists)
{
priority_queue<pair<int, ListNode*>, deque<pair<int, ListNode*>>, greater<pair<int, ListNode*>>> min_heap;
for (ListNode* l : lists)
{
if (l) min_heap.push(make_pair(l->val, l));
}
ListNode *head = new ListNode(-1);
ListNode *cur = head;
while (!min_heap.empty())
{
cur->next = min_heap.top().second;
cur = cur->next;
min_heap.pop();
if (cur->next) min_heap.push(make_pair(cur->next->val, cur->next));
}
ListNode *ret = head->next;
delete head;
return ret;
}
};
int main()
{
return 0;
}