-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathDay25.java
52 lines (43 loc) · 1.56 KB
/
Day25.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
package com.sbaars.adventofcode.year15.days;
import com.sbaars.adventofcode.year15.Day2015;
public class Day25 extends Day2015 {
private static final long FIRST_CODE = 20151125L;
private static final long MULTIPLIER = 252533L;
private static final long DIVISOR = 33554393L;
public Day25() {
super(25);
}
public static void main(String[] args) {
Day25 day = new Day25();
day.printParts();
new com.sbaars.adventofcode.network.Submit().submit(day.part1(), 2015, 25, 1);
}
@Override
public Object part1() {
String input = day().trim();
int targetRow = Integer.parseInt(input.replaceAll(".*row (\\d+).*", "$1"));
int targetCol = Integer.parseInt(input.replaceAll(".*column (\\d+).*", "$1"));
return findCode(targetRow, targetCol);
}
@Override
public Object part2() {
return "Merry Christmas!"; // There is no part 2 for Day 25
}
private long findCode(int targetRow, int targetCol) {
// Calculate the position in the sequence
int position = getPositionInSequence(targetRow, targetCol);
// Calculate the code at that position
long code = FIRST_CODE;
for (int i = 1; i < position; i++) {
code = (code * MULTIPLIER) % DIVISOR;
}
return code;
}
private int getPositionInSequence(int row, int col) {
// The position is the sum of all numbers in the diagonal before the target position
// plus the position in the current diagonal
int diagonalNum = row + col - 1;
int positionsBeforeDiagonal = (diagonalNum * (diagonalNum - 1)) / 2;
return positionsBeforeDiagonal + col;
}
}