forked from kamyu104/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
best-team-with-no-conflicts.py
207 lines (183 loc) · 6.02 KB
/
best-team-with-no-conflicts.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
# Time: O(nloga)
# Space: O(n)
# Range Maximum Query
class SegmentTree(object): # 0-based index
def __init__(self, N,
build_fn=lambda x, y: [y]*(2*x),
query_fn=lambda x, y: y if x is None else max(x, y), # (lambda x, y: y if x is None else min(x, y))
update_fn=lambda x, y: y,
default_val=0):
self.N = N
self.H = (N-1).bit_length()
self.query_fn = query_fn
self.update_fn = update_fn
self.default_val = default_val
self.tree = build_fn(N, default_val)
self.lazy = [None]*N
def __apply(self, x, val):
self.tree[x] = self.update_fn(self.tree[x], val)
if x < self.N:
self.lazy[x] = self.update_fn(self.lazy[x], val)
def update(self, L, R, h): # Time: O(logN), Space: O(N)
def pull(x):
while x > 1:
x //= 2
self.tree[x] = self.query_fn(self.tree[x*2], self.tree[x*2+1])
if self.lazy[x] is not None:
self.tree[x] = self.update_fn(self.tree[x], self.lazy[x])
L += self.N
R += self.N
L0, R0 = L, R
while L <= R:
if L & 1: # is right child
self.__apply(L, h)
L += 1
if R & 1 == 0: # is left child
self.__apply(R, h)
R -= 1
L //= 2
R //= 2
pull(L0)
pull(R0)
def query(self, L, R): # Time: O(logN), Space: O(N)
def push(x):
n = 2**self.H
while n != 1:
y = x // n
if self.lazy[y] is not None:
self.__apply(y*2, self.lazy[y])
self.__apply(y*2 + 1, self.lazy[y])
self.lazy[y] = None
n //= 2
result = None
if L > R:
return result
L += self.N
R += self.N
push(L)
push(R)
while L <= R:
if L & 1: # is right child
result = self.query_fn(result, self.tree[L])
L += 1
if R & 1 == 0: # is left child
result = self.query_fn(result, self.tree[R])
R -= 1
L //= 2
R //= 2
return result
def __str__(self):
showList = []
for i in xrange(self.N):
showList.append(self.query(i, i))
return ",".join(map(str, showList))
# optimized from Solution3
class Solution(object):
def bestTeamScore(self, scores, ages):
"""
:type scores: List[int]
:type ages: List[int]
:rtype: int
"""
players = sorted(zip(scores, ages))
sorted_ages = sorted(set(ages))
lookup = {age:i for i, age in enumerate(sorted_ages)} # coordinate compression
segment_tree = SegmentTree(len(lookup))
result = 0
for score, age in players:
segment_tree.update(lookup[age], lookup[age], segment_tree.query(0, lookup[age])+score)
return segment_tree.query(0, len(lookup)-1)
# Time: O(nlogs)
# Space: O(n)
# optimized from Solution4
class Solution2(object):
def bestTeamScore(self, scores, ages):
"""
:type scores: List[int]
:type ages: List[int]
:rtype: int
"""
players = sorted(zip(ages, scores))
sorted_scores = sorted(set(scores))
lookup = {score:i for i, score in enumerate(sorted_scores)} # coordinate compression
segment_tree = SegmentTree(len(lookup))
result = 0
for age, score in players:
segment_tree.update(lookup[score], lookup[score], segment_tree.query(0, lookup[score])+score)
return segment_tree.query(0, len(lookup)-1)
# Time: O(n * a)
# Space: O(n)
import collections
# optimized from Solution5
class Solution3(object):
def bestTeamScore(self, scores, ages):
"""
:type scores: List[int]
:type ages: List[int]
:rtype: int
"""
players = sorted(zip(scores, ages))
sorted_ages = sorted(set(ages))
dp = collections.defaultdict(int)
result = 0
for score, age in players:
dp[age] = max(dp[a] for a in sorted_ages if a <= age) + score
return max(dp.itervalues())
# Time: O(n * s)
# Space: O(n)
import collections
# optimized from Solution6
class Solution4(object):
def bestTeamScore(self, scores, ages):
"""
:type scores: List[int]
:type ages: List[int]
:rtype: int
"""
players = sorted(zip(ages, scores))
sorted_scores = sorted(set(scores))
dp = collections.defaultdict(int)
result = 0
for age, score in players:
dp[score] = max(dp[s] for s in sorted_scores if s <= score) + score
return max(dp.itervalues())
# Time: O(n^2)
# Space: O(n)
# longest_increasing_subsequence like dp solution
class Solution5(object):
def bestTeamScore(self, scores, ages):
"""
:type scores: List[int]
:type ages: List[int]
:rtype: int
"""
players = sorted(zip(scores, ages))
dp = [0]*len(players)
result = 0
for i in xrange(len(players)):
dp[i] = players[i][0]
for j in xrange(i):
if players[j][1] <= players[i][1]:
dp[i] = max(dp[i], dp[j] + players[i][0])
result = max(result, dp[i])
return result
# Time: O(n^2)
# Space: O(n)
# longest_increasing_subsequence like dp solution
class Solution6(object):
def bestTeamScore(self, scores, ages):
"""
:type scores: List[int]
:type ages: List[int]
:rtype: int
"""
players = sorted(zip(ages, scores))
dp = [0]*len(players)
result = 0
for i in xrange(len(players)):
dp[i] = players[i][1]
for j in xrange(i):
if players[j][1] <= players[i][1]:
dp[i] = max(dp[i], dp[j] + players[i][1])
result = max(result, dp[i])
return result