-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay11.java
128 lines (117 loc) · 4 KB
/
Day11.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
//make sure the data has no spaces in front of the text
package org.thehuglio;
import java.io.File;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
public class Main {
private static final Reader reader = new Reader(new File("data.txt"));
static Monkeys[] monkeys;
static int limitprotectionnumber = 1;
public static void main(String[] args) {
System.out.println(reader.data);
monkeys = new Monkeys[8];
for (int i = 0; i < reader.data.size(); i += 7) {
List<Long> items = new LinkedList<>();
String[] split = reader.data.get(i + 1).split(" ");
for (int j = 2; j < split.length; j++) {
items.add(Long.parseLong(split[j].split(",")[0]));
}
split = reader.data.get(i + 2).split(" ");
monkeys[i/7] = (new Monkeys(
items,
split[4],
getdataint(i + 2,5),
getdataint(i+4,5),
getdataint(i+5,5),
getdataint(i+3,3),
i/7));
limitprotectionnumber *= getdataint(i+3,3);
}
for (int i = 0; i < 10000;i++) {
for (Monkeys monkeys1 : monkeys) {
monkeys1.play();
}
}
long mon1 = 0;
long mon2 = 0;
for (Monkeys monkeys1 : monkeys) {
if (monkeys1.getTotalinspections() > mon1) {
mon2 = mon1;
mon1 = monkeys1.getTotalinspections();
continue;
}
if (monkeys1.getTotalinspections() > mon2) {
mon2 = monkeys1.getTotalinspections();
}
}
System.out.println(mon1 + " " + mon2);
System.out.println(mon1 * mon2);
}
private static int getdataint(int sindex,int lindex) {
String s = reader.data.get(sindex).split(" ")[lindex];
if (s.equals("old")) {
return 0;
}
return Integer.parseInt(s);
}
}
package org.thehuglio;
import java.io.File;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
public class Main {
private static final Reader reader = new Reader(new File("data.txt"));
static Monkeys[] monkeys;
static int limitprotectionnumber = 1;
public static void main(String[] args) {
System.out.println(reader.data);
monkeys = new Monkeys[8];
for (int i = 0; i < reader.data.size(); i += 7) {
List<Long> items = new LinkedList<>();
String[] split = reader.data.get(i + 1).split(" ");
for (int j = 2; j < split.length; j++) {
items.add(Long.parseLong(split[j].split(",")[0]));
}
split = reader.data.get(i + 2).split(" ");
monkeys[i/7] = (new Monkeys(
items,
split[4],
getdataint(i + 2,5),
getdataint(i+4,5),
getdataint(i+5,5),
getdataint(i+3,3),
i/7));
limitprotectionnumber *= getdataint(i+3,3);
}
for (int i = 0; i < 10000;i++) {
for (Monkeys monkeys1 : monkeys) {
monkeys1.play();
}
}
long mon1 = 0;
long mon2 = 0;
for (Monkeys monkeys1 : monkeys) {
if (monkeys1.getTotalinspections() > mon1) {
mon2 = mon1;
mon1 = monkeys1.getTotalinspections();
continue;
}
if (monkeys1.getTotalinspections() > mon2) {
mon2 = monkeys1.getTotalinspections();
}
}
System.out.println(mon1 + " " + mon2);
System.out.println(mon1 * mon2);
}
private static int getdataint(int sindex,int lindex) {
String s = reader.data.get(sindex).split(" ")[lindex];
if (s.equals("old")) {
return 0;
}
return Integer.parseInt(s);
}
}