-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain_LongestCost.java
143 lines (133 loc) · 4.81 KB
/
Main_LongestCost.java
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
import java.awt.*;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws IOException {
String[] inputs = new String[]{"a_example.txt", "b_read_on.txt", "d_tough_choices.txt", "e_so_many_books.txt", "f_libraries_of_the_world.txt", "c_incunabula.txt",};
for (String inputStr : inputs) {
File input = new File(inputStr);
Scanner reader = new Scanner(input);
String temp = reader.nextLine();
String[] tempArr = temp.split(" ");
int numBooks = Integer.parseInt(tempArr[0]);
int numLib = Integer.parseInt(tempArr[1]);
int numDays = Integer.parseInt(tempArr[0]);
ArrayList<Book> worldCollection = new ArrayList<>();
ArrayList<Library> worldLibs = new ArrayList<>();
ArrayList<Library> markedWorldLibs = new ArrayList<>();
HashSet<Integer> set = new HashSet<>();
temp = reader.nextLine();
tempArr = temp.split(" ");
for (int i = 0; i < tempArr.length; i++) {
worldCollection.add(new Book(i, Integer.parseInt(tempArr[i])));
}
for (int i = 0; i < numLib; i++) {
temp = reader.nextLine();
tempArr = temp.split(" ");
int libNumDays = Integer.parseInt(tempArr[1]);
int bookPerDay = Integer.parseInt(tempArr[2]);
ArrayList<Book> collection = new ArrayList<>();
temp = reader.nextLine();
tempArr = temp.split(" ");
for (String s : tempArr) {
collection.add(worldCollection.get(Integer.parseInt(s)));
}
Collections.sort(collection);
worldLibs.add(new Library(i, libNumDays, collection, bookPerDay));
}
reader.close();
Collections.sort(worldLibs);
for (int dayCount = 0; dayCount <= numDays; dayCount++) {
if (worldLibs.size() > 0) {
Library curr = worldLibs.get(0);
if (curr.signUpCost > 0) {
curr.signUpCost--;
} else {
markedWorldLibs.add(curr);
worldLibs.remove(curr);
}
}
for (Library l : markedWorldLibs) {
for (int i = 0; i < l.booksPerDay; i++) {
Book b = l.getMaxBook(set);
if (b != null) {
set.add(b.bId);
worldCollection.remove(b);
}
}
}
}
File out = new File(inputStr.charAt(0) + "_out.txt");
FileWriter writer = new FileWriter(out);
String result = markedWorldLibs.size() + "\n";
for (Library l : markedWorldLibs) {
result += (l.lId + " " + l.scannedIdx.size() +"\n");
for (int i : l.scannedIdx) {
result += (i + " ");
}
result += ("\n");
}
writer.write(result);
writer.close();
System.out.println("Finished " + inputStr.charAt(0));
}
}
}
class Book implements Comparable{
int bId;
int score;
public Book(int id, int score) {
this.bId = id;
this.score = score;
}
@Override
public int compareTo(Object o) {
Book book = (Book) o;
return Integer.compare(this.score, book.score);
}
}
class Library implements Comparable {
int lId;
int signUpCost;
int booksPerDay;
int score = 0;
ArrayList<Book> books;
HashSet<Integer> scannedIdx = new HashSet<>();
public Library(int lId, int signUp, ArrayList<Book> books, int booksPerDay) {
this.lId = lId;
this.signUpCost = signUp;
this.books = books;
this.booksPerDay = booksPerDay;
for (Book b : books) {
score += b.score;
}
}
public Book getMaxBook(HashSet<Integer> set) {
Book temp = null;
for (Book b : books) {
if (!set.contains(b.bId)) {
books.remove(b);
scannedIdx.add(b.bId);
return b;
} else {
temp = b;
}
}
if (temp != null) {
books.remove(temp);
scannedIdx.add(temp.bId);
}
return temp;
}
@Override
public int compareTo(Object o) {
Library lib = (Library) o;
return Integer.compare(this.signUpCost, lib.signUpCost);
}
}