-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminimum_deletions_to_make_character_frequencies_unique.py
More file actions
68 lines (52 loc) · 1.95 KB
/
Copy pathminimum_deletions_to_make_character_frequencies_unique.py
File metadata and controls
68 lines (52 loc) · 1.95 KB
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
"""
1647. Minimum Deletions to Make Character Frequencies Unique
Difficulty:Medium
A string s is called good if there are no two different characters in s that have the same frequency.
Given a string s, return the minimum number of characters you need to delete to make s good.
The frequency of a character in a string is the number of times it appears in the string. For example, in the string "aab", the frequency of 'a' is 2, while the frequency of 'b' is 1.
Example 1:
Input: s = "aab"
Output: 0
Explanation: s is already good.
Example 2:
Input: s = "aaabbbcc"
Output: 2
Explanation: You can delete two 'b's resulting in the good string "aaabcc".
Another way it to delete one 'b' and one 'c' resulting in the good string "aaabbc".
Example 3:
Input: s = "ceabaacb"
Output: 2
Explanation: You can delete both 'c's resulting in the good string "eabaab".
Note that we only care about characters that are still in the string at the end (i.e. frequency of 0 is ignored).
Constraints:
1 <= s.length <= 105
s contains only lowercase English letters.
"""
class Solution:
def minDeletions(self, s: str) -> int:
count = {}
for i in s:
if i in count.keys():
count[i] += 1
else:
count[i] = 1
count_value = sorted(count.values(), reverse=True)
ret = 0
for i in range(1, len(count_value)):
if count_value[i-1] == 0:
ret = ret + count_value[i]
count_value[i] = 0
elif count_value[i-1] == count_value[i]:
count_value[i] -= 1
ret = ret + 1
elif count_value[i-1] < count_value[i]:
ret = ret + count_value[i] - count_value[i-1] + 1
count_value[i] = count_value[i-1] - 1
return ret
if __name__ == "__main__":
solution = Solution()
# print(solution.minDeletions('aaabbbcc'))
# print(solution.minDeletions('ceabaacb'))
print(solution.minDeletions('aaaabbbbccccdddd'))
print(solution.minDeletions('accdcdadddbaadbc'))
print(solution.minDeletions('bbcebab'))