forked from neetcode-gh/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0846-hand-of-straights.swift
105 lines (95 loc) · 2.65 KB
/
0846-hand-of-straights.swift
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
class Heap {
var heap = [0]
var count: Int {
heap.count - 1
}
var first: Int {
heap[1]
}
func heapify(_ arr: [Int]) {
heap = arr
heap.append(arr[0])
var cur = (heap.count - 1) / 2
while cur > 0 {
var i = cur
while 2 * i < heap.count {
if 2 * i + 1 < heap.count && heap[2 * i + 1] < heap[2 * i] && heap[i] > heap[2 * i + 1] {
let tmp = heap[i]
heap[i] = heap[2 * i + 1]
heap[2 * i + 1] = tmp
i = 2 * i + 1
} else if heap[i] > heap[2 * i] {
let tmp = heap[i]
heap[i] = heap[2 * i]
heap[2 * i] = tmp
i = 2 * i
} else {
break
}
}
cur -= 1
}
}
func push(_ val: Int) {
heap.append(val)
var i = heap.count - 1
while i > 1 && heap[i] < heap[i / 2] {
let tmp = heap[i]
heap[i] = heap[i / 2]
heap[i / 2] = tmp
i = i / 2
}
}
func pop() -> Int? {
if heap.count == 1 {
return nil
}
if heap.count == 2 {
return heap.popLast()
}
let res = heap[1]
heap[1] = heap.removeLast()
var i = 1
while 2 * i < heap.count {
if 2 * i + 1 < heap.count && heap[2 * i + 1] < heap[2 * i] && heap[i] > heap[2 * i + 1] {
let tmp = heap[i]
heap[i] = heap[2 * i + 1]
heap[2 * i + 1] = tmp
i = 2 * i + 1
} else if heap[i] > heap[2 * i] {
let tmp = heap[i]
heap[i] = heap[2 * i]
heap[2 * i] = tmp
i = 2 * i
} else {
break
}
}
return res
}
}
class Solution {
func isNStraightHand(_ hand: [Int], _ groupSize: Int) -> Bool {
var count = [Int: Int]()
for n in hand {
count[n, default: 0] += 1
}
let minHeap = Heap()
minHeap.heapify(Array(count.keys))
while minHeap.count > 0 {
for i in minHeap.first..<(minHeap.first + groupSize) {
if count[i] == nil {
return false
}
count[i, default: 0] -= 1
if count[i] == 0 {
if i != minHeap.first {
return false
}
minHeap.pop()
}
}
}
return true
}
}