summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2017-12-15 15:03:32 -0500
committerJune McEnroe <june@causal.agency>2020-11-22 00:14:25 -0500
commit42830abbdf2f11b875adaa8ec13fd9e36d2d679e (patch)
treeb0b3e2e9e9e8e3b41b0113d80e7e30dd6bd9be7f
parentDay 11 (diff)
downloadaoc-42830abbdf2f11b875adaa8ec13fd9e36d2d679e.tar.gz
aoc-42830abbdf2f11b875adaa8ec13fd9e36d2d679e.zip
Day 11, part 2
-rw-r--r--2017/src/bin/day11.rs19
1 files changed, 18 insertions, 1 deletions
diff --git a/2017/src/bin/day11.rs b/2017/src/bin/day11.rs
index 174f950..dd46fde 100644
--- a/2017/src/bin/day11.rs
+++ b/2017/src/bin/day11.rs
@@ -4,6 +4,10 @@ use std::io::{self, Read};
 struct Hex(i32, i32, i32);
 
 impl Hex {
+    fn dist(self) -> i32 {
+        (self.0.abs() + self.1.abs() + self.2.abs()) / 2
+    }
+
     fn mov(self, dir: &str) -> Self {
         let Hex(x, y, z) = self;
         match dir {
@@ -23,7 +27,19 @@ fn solve1(input: &str) -> i32 {
     for dir in input.split(',') {
         hex = hex.mov(dir);
     }
-    (hex.0.abs() + hex.1.abs() + hex.2.abs()) / 2
+    hex.dist()
+}
+
+fn solve2(input: &str) -> i32 {
+    let mut hex = Hex(0, 0, 0);
+    let mut max = 0;
+    for dir in input.split(',') {
+        hex = hex.mov(dir);
+        if hex.dist() > max {
+            max = hex.dist()
+        }
+    }
+    max
 }
 
 fn main() {
@@ -31,6 +47,7 @@ fn main() {
     io::stdin().read_to_string(&mut input).unwrap();
 
     println!("Part 1: {}", solve1(input.trim()));
+    println!("Part 2: {}", solve2(input.trim()));
 }
 
 #[test]