-
Notifications
You must be signed in to change notification settings - Fork 0
/
luck balance.py
45 lines (36 loc) · 1.05 KB
/
luck balance.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
import math
import os
import random
import re
import sys
# Complete the luckBalance function below.
def luckBalance(k, contests):
balance = 0
ls_important = []
for i in range(n):
li,ti = contests[i]
if ti == 0:
balance += li
else:
ls_important.append(li)
ls_important.sort()
if len(ls_important)>k:
for i in range(len(ls_important)-k):
balance -= ls_important[i]
for i in range(len(ls_important)-k, len(ls_important)):
balance += ls_important[i]
elif len(ls_important)<=k:
for i in range(len(ls_important)):
balance += ls_important[i]
return balance
if __name__ == '__main__':
fptr = open(os.environ['OUTPUT_PATH'], 'w')
nk = input().split()
n = int(nk[0])
k = int(nk[1])
contests = []
for _ in range(n):
contests.append(list(map(int, input().rstrip().split())))
result = luckBalance(k, contests)
fptr.write(str(result) + '\n')
fptr.close()