summaryrefslogtreecommitdiff
path: root/day03/day03.java
blob: 4d4caa9fa4c52489517c5bdfa01a1fa08423b104 (plain)
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
import java.io.IOException;
import java.io.RandomAccessFile;
import java.util.ArrayList;
import java.util.regex.Pattern;
import java.util.regex.Matcher;

class Number {
  int row, colstart, colend, value;

  public Number(int row, int colstart, int colend, int value) {
    this.row = row;
    this.colstart = colstart;
    this.colend = colend;
    this.value = value;
  }

  public String toString() {
    return "[" + this.row + ", " + this.colstart + "-" + this.colend + "]: " + this.value;
  }
}

class Symbol {
  int row, col;
  String symbol;

  public Symbol(int row, int col, String symbol) {
    this.row = row;
    this.col = col;
    this.symbol = symbol;
  }

  public String toString() {
    return "[" + this.row + ", " + this.col + "]: " + this.symbol;
  }
}

public class day03 {
  public static void main(String args[]) throws IOException {
    RandomAccessFile input = new RandomAccessFile("input", "r");
    System.out.println("Day 01 Part 1: " + part1(input));
    input.seek(0);
    System.out.println("Day 01 Part 2: " + part2(input));
    input.close();
  }

  public static String part1(RandomAccessFile input) throws IOException {
    String line;
    int row = 0;
    ArrayList<Number> numbers = new ArrayList<>();
    ArrayList<Symbol> symbols = new ArrayList<>();

    while ((line = input.readLine()) != null) {
      getNumbers(numbers, row, line);
      getSymbols(symbols, row, line);
      row += 1;
    }

    int tot = 0;
    for (Number num: numbers) {
      boolean part = false;
      for (Symbol sym: symbols) {
        for (int col = num.colstart - 1; col <= num.colend + 1; col++) {
          if (sym.row == num.row - 1 && sym.col == col) {
            part = true;
          }
          if (sym.row == num.row + 1 && sym.col == col) {
            part = true;
          }
        }
        if (sym.row == num.row && sym.col == num.colstart - 1) {
          part = true;
        }
        if (sym.row == num.row && sym.col == num.colend + 1) {
          part = true;
        }
      }
      if (part) {
        tot += num.value;
      }
    }

    return Integer.toString(tot);
  }

  private static void getNumbers(ArrayList<Number> numbers, int row, String line) {
    Pattern pat = Pattern.compile("\\d+");
    Matcher mat = pat.matcher(line);
    while (mat.find()) {
      numbers.add(
        new Number(
          row,
          mat.start(),
          mat.end() - 1,
          Integer.parseInt(mat.group())
        )
      );
    }
  }

  private static void getSymbols(ArrayList<Symbol> symbols, int row, String line) {
    Pattern pat = Pattern.compile("[^0-9.]");
    Matcher mat = pat.matcher(line);
    while (mat.find()) {
      symbols.add(
        new Symbol(
          row,
          mat.start(),
          mat.group()
        )
      );
    }
  }

  public static String part2(RandomAccessFile input) throws IOException {
    return "WIP";
  }
}