-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathmaximize-alternating-sum-using-swaps.py
More file actions
69 lines (63 loc) · 2.16 KB
/
maximize-alternating-sum-using-swaps.py
File metadata and controls
69 lines (63 loc) · 2.16 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
69
# Time: O(n + s)
# Space: O(n + s)
import random
# bfs, flood fill, quick select
class Solution(object):
def maxAlternatingSum(self, nums, swaps):
"""
:type nums: List[int]
:type swaps: List[List[int]]
:rtype: int
"""
def nth_element(nums, n, compare=lambda a, b: a < b):
def tri_partition(nums, left, right, target, compare):
mid = left
while mid <= right:
if nums[mid] == target:
mid += 1
elif compare(nums[mid], target):
nums[left], nums[mid] = nums[mid], nums[left]
left += 1
mid += 1
else:
nums[mid], nums[right] = nums[right], nums[mid]
right -= 1
return left, right
left, right = 0, len(nums)-1
while left <= right:
pivot_idx = random.randint(left, right)
pivot_left, pivot_right = tri_partition(nums, left, right, nums[pivot_idx], compare)
if pivot_left <= n <= pivot_right:
return
elif pivot_left > n:
right = pivot_left-1
else: # pivot_right < n.
left = pivot_right+1
def bfs(u):
q = []
if lookup[u]:
return q
lookup[u] = True
q.append(u)
for u in q:
for v in adj[u]:
if lookup[v]:
continue
lookup[v] = True
q.append(v)
return q
adj = [[] for _ in xrange(len(nums))]
for i, j in swaps:
adj[i].append(j)
adj[j].append(i)
lookup = [False]*len(adj)
result = sum(nums)
for u in xrange(len(nums)):
g = bfs(u)
if not g:
continue
l = sum(i%2 for i in g)
arr = [nums[i] for i in g]
nth_element(arr, l)
result -= 2*sum(arr[i] for i in xrange(l))
return result