-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetscore.py
127 lines (94 loc) · 4.13 KB
/
getscore.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
import numpy as np
import pandas as pd
import time
import os
import sys
def read_file(filename: str):
with open(filename) as file:
books_in_library_with_id = []
nb_books_in_library_with_id = []
signup_days_for_library_with_id = []
shipping_speed_for_library_with_id = []
for idx, line in enumerate(file):
if(idx == 0):
# Start of the file
line_1 = line.replace('\n', '').split(' ')
# print(line_1)
nb_books = int(line_1[0])
nb_libraries = int(line_1[1])
nb_days = int(line_1[2])
# print(nb_books)
# print(nb_libraries)
# print(nb_days)
elif(idx == 1):
book_scores_with_id = line.replace('\n', '').split(' ')
book_scores_with_id = list(map(int,book_scores_with_id))
else:
if(idx % 2 == 0):
#### Per library section
line_1 = line.replace('\n', '').split(' ')
if(line_1[0] == ''):
break
nb_books_in_library_with_id.append(int(line_1[0]))
signup_days_for_library_with_id.append(int(line_1[1]))
shipping_speed_for_library_with_id.append(int(line_1[2]))
# print(nb_books_in_library_with_id)
# print(signup_days_for_library_with_id)
# print(shipping_speed_for_library_with_id)
if(idx % 2 == 1):
book_ids = line.replace('\n', '').split(' ')
if(book_ids[0] == ''):
break
book_ids = list(map(int,book_ids))
books_in_library_with_id.append(book_ids)
# print("book ids : {}".format(books_in_library_with_id))
return nb_books, \
nb_libraries, \
nb_days, \
nb_books_in_library_with_id, \
signup_days_for_library_with_id, \
shipping_speed_for_library_with_id, \
book_scores_with_id ,\
books_in_library_with_id
def get_score_from_library(library_id : int, days_left : int, books_already_scanned : list):
nb_books , \
nb_libraries, \
nb_days, \
nb_books_in_library_with_id, \
signup_days_for_library_with_id, \
shipping_speed_for_library_with_id, \
book_scores_with_id ,\
books_in_library_with_id = read_file("data/a_example.txt")
# Update days left
days_left = days_left - int(signup_days_for_library_with_id[library_id])
# Compute books scanned and possible books in library to be used
books = books_in_library_with_id[library_id]
books_already_scanned_set = set(books_already_scanned)
possible_books = set(books).difference(books_already_scanned_set)
books_scanned = books_already_scanned_set.union(possible_books)
# Compute score
score = 0
for book in possible_books:
score += book_scores_with_id[book]
return score, days_left, list(books_scanned)
if __name__ == '__main__':
nb_books , \
nb_libraries, \
nb_days, \
nb_books_in_library_with_id, \
signup_days_for_library_with_id, \
shipping_speed_for_library_with_id, \
book_scores_with_id ,\
books_in_library_with_id = read_file("data/a_example.txt")
# print("nb_books : {}".format(nb_books))
# print("nb_libraries : {}".format(nb_libraries))
# print("nb_days : {}".format(nb_days))
# print("nb_books_in_library_with_id : {}".format(nb_books_in_library_with_id))
# print("signup_days_for_library_with_id : {}".format(signup_days_for_library_with_id))
# print("shipping_speed_for_library_with_id : {}".format(shipping_speed_for_library_with_id))
# print("book_scores_with_id : {}".format(book_scores_with_id))
# print("books_in_library_with_id : {}".format(books_in_library_with_id))
score, days, books = get_score_from_library(0,5,[1,2,3])
print("score : {}".format(score))
print("days : {}".format(days))
print("books : {}".format(books))