forked from mickey0524/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1029.Two-City-Scheduling.py
39 lines (33 loc) · 992 Bytes
/
1029.Two-City-Scheduling.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
# https://leetcode.com/problems/two-city-scheduling/
# Easy (51.19%)
# Total Accepted: 3,913
# Total Submissions: 7,644
import math
class Solution(object):
def twoCitySchedCost(self, costs):
"""
:type costs: List[List[int]]
:rtype: int
"""
def comp(c1, c2):
return int(math.fabs(c2[0] - c2[1]) - math.fabs(c1[0] - c1[1]))
costs.sort(cmp=comp)
length = len(costs)
threshold = length / 2
A, B, res = 0, 0, 0
for i in xrange(length):
if costs[i][0] <= costs[i][1]:
if A < threshold:
res += costs[i][0]
A += 1
else:
res += costs[i][1]
B += 1
else:
if B < threshold:
res += costs[i][1]
B += 1
else:
res += costs[i][0]
A += 1
return res