-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathlongest-happy-string.py
70 lines (53 loc) · 2.01 KB
/
longest-happy-string.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
import heapq
from typing import Dict, List, Optional
from collections import Counter
class Solution:
def longestDiverseString(self, a: int, b: int, c: int) -> str:
heap = []
heapq.heappush(heap, (-a, "a"))
heapq.heappush(heap, (-b, "b"))
heapq.heappush(heap, (-c, "c"))
result = ["x", "x"]
while heap:
count, char = heapq.heappop(heap)
if result[-1] == result[-2] == char:
if heap:
count, char = heapq.heapreplace(heap, (count, char))
else:
break
if count < 0:
result.append(char)
count += 1
if count < 0:
heapq.heappush(heap, (count, char))
return "".join(result[2:])
def longestDiverseStringBruteForce(self, a: int, b: int, c: int) -> str:
count: Dict[str, int] = Counter()
count["a"] = a
count["b"] = b
count["c"] = c
def dfs(longest: Dict[str, int], path: List[str], max_len: int) -> str:
result = ""
if path and longest[path[-1]] > 2:
if len(path) - 1 > max_len:
return "".join(path[:-1])
else:
return ""
if count["a"] < 0 or count["b"] < 0 or count["c"] < 0:
if len(path) - 1 > max_len:
return "".join(path[:-1])
else:
return ""
if count["a"] == 0 and count["b"] == 0 and count["c"] == 0:
if len(path) > max_len:
return "".join(path)
else:
return ""
for letter in "abc":
count[letter] -= 1
path.append(letter)
result = max(result, dfs(Counter({letter: longest[letter] + 1}), path, len(result)), key=len)
path.pop()
count[letter] += 1
return result
return "".join(dfs(Counter(), [], 0))