forked from kamyu104/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maximal-score-after-applying-k-operations.py
59 lines (49 loc) · 1.2 KB
/
maximal-score-after-applying-k-operations.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
47
48
49
50
51
52
53
54
55
56
57
58
59
# Time: O(n + klogn)
# Space: O(1)
import heapq
# heap
class Solution(object):
def maxKelements(self, nums, k):
"""
:type nums: List[int]
:type k: int
:rtype: int
"""
def ceil_divide(a, b):
return (a+b-1)//b
result = 0
for i, x in enumerate(nums):
nums[i] = -x
heapq.heapify(nums)
for _ in xrange(k):
if not nums:
break
x = -heapq.heappop(nums)
result += x
nx = ceil_divide(x, 3)
if not nx:
continue
heapq.heappush(nums, -nx)
return result
# Time: O(n + klogn)
# Space: O(1)
import heapq
# heap
class Solution2(object):
def maxKelements(self, nums, k):
"""
:type nums: List[int]
:type k: int
:rtype: int
"""
def ceil_divide(a, b):
return (a+b-1)//b
result = 0
for i, x in enumerate(nums):
nums[i] = -x
heapq.heapify(nums)
for _ in xrange(k):
x = -heapq.heappop(nums)
result += x
heapq.heappush(nums, -ceil_divide(x, 3))
return result