forked from YuriSpiridonov/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1387.SortIntegersbyThePowerValue.py
83 lines (74 loc) · 2.95 KB
/
1387.SortIntegersbyThePowerValue.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
"""
The power of an integer x is defined as the number of steps needed to
transform x into 1 using the following steps:
- if x is even then x = x / 2
- if x is odd then x = 3 * x + 1
For example, the power of x = 3 is 7 because 3 needs 7 steps to become 1
(3 --> 10 --> 5 --> 16 --> 8 --> 4 --> 2 --> 1).
Given three integers lo, hi and k. The task is to sort all integers in the
interval [lo, hi] by the power value in ascending order, if two or more
integers have the same power value sort them by ascending order.
Return the k-th integer in the range [lo, hi] sorted by the power value.
Notice that for any integer x (lo <= x <= hi) it is guaranteed that x will
transform into 1 using these steps and that the power of x is will fit in
32 bit signed integer.
Example:
Input: lo = 12, hi = 15, k = 2
Output: 13
Explanation: The power of 12 is 9
(12 --> 6 --> 3 --> 10 --> 5 --> 16 --> 8 --> 4 --> 2 --> 1)
The power of 13 is 9
The power of 14 is 17
The power of 15 is 17
The interval sorted by the power value [12,13,14,15].
For k = 2 answer is the second element which is 13.
Notice that 12 and 13 have the same power value and we sorted
them in ascending order. Same for 14 and 15.
Example:
Input: lo = 1, hi = 1, k = 1
Output: 1
Example:
Iput: lo = 7, hi = 11, k = 4
Output: 7
Explanation: The power array corresponding to the interval
[7, 8, 9, 10, 11] is [16, 3, 19, 6, 14].
The interval sorted by power is [8, 10, 11, 7, 9].
The fourth number in the sorted array is 7.
Example:
Input: lo = 10, hi = 20, k = 5
Output: 13
Example:
Input: lo = 1, hi = 1000, k = 777
Output: 570
Constraints:
- 1 <= lo <= hi <= 1000
- 1 <= k <= hi - lo + 1
"""
#Difficulty: Medium
#333 / 333 test cases passed.
#Runtime: 824 ms
#Memory Usage: 13.8 MB
#Runtime: 824 ms, faster than 44.01% of Python3 online submissions for Sort Integers by The Power Value.
#Memory Usage: 13.8 MB, less than 92.29% of Python3 online submissions for Sort Integers by The Power Value.
class Solution:
def getKth(self, lo: int, hi: int, k: int) -> int:
power = {}
result = [None]
for number in range(lo, hi+1):
n = number
n_power = 0
while True:
if number == 1:
if n_power not in power:
power[n_power] = []
power[n_power].append(n)
break
elif number % 2:
number = 3 * number + 1
n_power += 1
else:
number /= 2
n_power += 1
for key in sorted(power.keys()):
result.extend(power[key])
return result[k]