summaryrefslogtreecommitdiff
path: root/day15/day15.java
diff options
context:
space:
mode:
authorNat Lasseter <user@4574.co.uk>2023-12-15 11:28:25 +0000
committerNat Lasseter <user@4574.co.uk>2023-12-15 11:28:25 +0000
commit1c879b6b8645a5b22c670f15f989dcbcd479546f (patch)
treeb3adde4bd2fde01e32bc4789ca4c2a5978e77bd1 /day15/day15.java
parent3dba184e2ad2996a8126dcd0eb64c3e684f82f1e (diff)
Day 15
Diffstat (limited to 'day15/day15.java')
-rw-r--r--day15/day15.java98
1 files changed, 98 insertions, 0 deletions
diff --git a/day15/day15.java b/day15/day15.java
new file mode 100644
index 0000000..5f4a7b5
--- /dev/null
+++ b/day15/day15.java
@@ -0,0 +1,98 @@
+import java.io.IOException;
+import java.io.RandomAccessFile;
+import java.util.ArrayList;
+import java.util.AbstractMap.SimpleEntry;
+
+public class day15 {
+ public static void main(String args[]) throws IOException {
+ RandomAccessFile input = new RandomAccessFile("input", "r");
+ System.out.println("Day 15 Part 1: " + part1(input));
+ input.seek(0);
+ System.out.println("Day 15 Part 2: " + part2(input));
+ input.close();
+ }
+
+ public static String part1(RandomAccessFile input) throws IOException {
+ String[] init = input.readLine().split(",");
+
+ int sum = 0;
+ for(String s: init) {
+ sum += hash(s);
+ }
+
+ return Integer.toString(sum);
+ }
+
+ public static String part2(RandomAccessFile input) throws IOException {
+ String[] init = input.readLine().split(",");
+ PairList[] boxes = new PairList[256];
+
+ for (int i = 0; i < 256; i++) {
+ boxes[i] = new PairList();
+ }
+
+ for (String cmd: init) {
+ if (cmd.endsWith("-")) {
+ String[] cmda = cmd.split("-");
+ int box = hash(cmda[0]);
+ boxes[box].remove(cmda[0]);
+ } else {
+ String[] cmda = cmd.split("=");
+ int box = hash(cmda[0]);
+ boxes[box].put(cmda[0], Integer.parseInt(cmda[1]));
+ }
+ }
+
+ int sum = 0;
+ for (int i = 0; i < 256; i++) {
+ sum += ((i + 1) * boxes[i].power());
+ }
+
+ return Integer.toString(sum);
+ }
+
+ private static int hash(String s) {
+ int cur = 0;
+ for (int a: s.toCharArray()) {
+ cur += a;
+ cur *= 17;
+ cur %= 256;
+ }
+ return cur;
+ }
+
+ static class PairList {
+ ArrayList<SimpleEntry<String, Integer>> pairlist;
+
+ public PairList() {
+ pairlist = new ArrayList<>();
+ }
+
+ public void remove(String key) {
+ for (int i = 0; i < pairlist.size(); i++) {
+ if (pairlist.get(i).getKey().equals(key)) {
+ pairlist.remove(i);
+ return;
+ }
+ }
+ }
+
+ public void put(String key, Integer value) {
+ for (int i = 0; i < pairlist.size(); i++) {
+ if (pairlist.get(i).getKey().equals(key)) {
+ pairlist.get(i).setValue(value);
+ return;
+ }
+ }
+ pairlist.add(new SimpleEntry(key, value));
+ }
+
+ public int power() {
+ int sum = 0;
+ for (int i = 0; i < pairlist.size(); i++) {
+ sum += ((i + 1) * pairlist.get(i).getValue());
+ }
+ return sum;
+ }
+ }
+}