summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2016-12-17 00:59:00 -0500
committerJune McEnroe <programble@gmail.com>2016-12-17 00:59:00 -0500
commit87236d043b2949ffeb167ad870162cca93542e2b (patch)
tree503000e808911f394f56052d8b18418339e6cf5a
parentDay 15 (diff)
downloadaoc-87236d043b2949ffeb167ad870162cca93542e2b.tar.gz
aoc-87236d043b2949ffeb167ad870162cca93542e2b.zip
Day 15 part 2
-rw-r--r--src/bin/day15.rs18
1 files changed, 15 insertions, 3 deletions
diff --git a/src/bin/day15.rs b/src/bin/day15.rs
index c7006eb..ec9df7a 100644
--- a/src/bin/day15.rs
+++ b/src/bin/day15.rs
@@ -64,7 +64,7 @@ impl<'a> From<&'a str> for Sculpture {
     }
 }
 
-fn solve(input: &str) -> u32 {
+fn solve1(input: &str) -> u32 {
     let mut sculpture = Sculpture::from(input);
     loop {
         if sculpture.clone().drop_capsule() {
@@ -74,11 +74,23 @@ fn solve(input: &str) -> u32 {
     }
 }
 
+fn solve2(input: &str) -> u32 {
+    let mut sculpture = Sculpture::from(input);
+    sculpture.discs.push(Disc { positions: 11, position: 0 });
+    loop {
+        if sculpture.clone().drop_capsule() {
+            return sculpture.time;
+        }
+        sculpture.tick();
+    }
+}
+
 fn main() {
     let mut input = String::new();
     io::stdin().read_to_string(&mut input).unwrap();
 
-    println!("Part 1: {}", solve(&input));
+    println!("Part 1: {}", solve1(&input));
+    println!("Part 2: {}", solve2(&input));
 }
 
 #[test]
@@ -87,5 +99,5 @@ fn part1() {
 Disc #1 has 5 positions; at time=0, it is at position 4.
 Disc #2 has 2 positions; at time=0, it is at position 1.
 ";
-    assert_eq!(5, solve(input.trim()));
+    assert_eq!(5, solve1(input.trim()));
 }