-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path1054.Distant-Barcodes.py
46 lines (35 loc) · 1023 Bytes
/
1054.Distant-Barcodes.py
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
# https://leetcode.com/problems/distant-barcodes/
# Medium (34.24%)
# Total Accepted: 2,331
# Total Submissions: 6,808
from heapq import heappush, heappop
class Solution(object):
def rearrangeBarcodes(self, barcodes):
"""
:type barcodes: List[int]
:rtype: List[int]
"""
length = len(barcodes)
if length < 3:
return barcodes
hash_map = {}
for n in barcodes:
hash_map[n] = hash_map.get(n, 0) + 1
h = []
for k, v in hash_map.iteritems():
heappush(h, (-v, k))
i = 0
while h:
tmp = []
j = 2
while j > 0 and h:
item = heappop(h)
barcodes[i] = item[1]
i += 1
if item[0] + 1 != 0:
tmp += (item[0] + 1, item[1]),
j -= 1
if tmp:
for item in tmp:
heappush(h, item)
return barcodes