summary refs log tree commit diff homepage
path: root/2017
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2017-12-06 00:21:27 -0500
committerJune McEnroe <programble@gmail.com>2017-12-06 00:21:27 -0500
commit2a92665f761bc1da4248a45542be8a6430cfa1d4 (patch)
tree32bfa6c7e6e4c38a676b5af98564d503437ff901 /2017
parentDay 5, part 2 (diff)
downloadaoc-2a92665f761bc1da4248a45542be8a6430cfa1d4.tar.gz
aoc-2a92665f761bc1da4248a45542be8a6430cfa1d4.zip
Day 6
Diffstat (limited to '2017')
-rw-r--r--2017/input/day06.txt1
-rw-r--r--2017/src/bin/day06.rs45
2 files changed, 46 insertions, 0 deletions
diff --git a/2017/input/day06.txt b/2017/input/day06.txt
new file mode 100644
index 0000000..6c3395f
--- /dev/null
+++ b/2017/input/day06.txt
@@ -0,0 +1 @@
+0	5	10	0	11	14	13	4	11	8	8	7	1	4	12	11
\ No newline at end of file
diff --git a/2017/src/bin/day06.rs b/2017/src/bin/day06.rs
new file mode 100644
index 0000000..dbc8d07
--- /dev/null
+++ b/2017/src/bin/day06.rs
@@ -0,0 +1,45 @@
+use std::collections::HashSet;
+use std::io::{self, Read};
+
+fn solve1(input: &str) -> u32 {
+    let mut banks: Vec<u32> = input.split_whitespace()
+        .map(str::parse)
+        .map(Result::unwrap)
+        .collect();
+    let mut states = HashSet::new();
+
+    for cycle in 0.. {
+        if !states.insert(banks.clone()) {
+            return cycle;
+        }
+
+        let (index, mut blocks) = banks.iter()
+            .cloned()
+            .enumerate()
+            .rev()
+            .max_by_key(|&(_, n)| n)
+            .unwrap();
+
+        banks[index] = 0;
+        for bank in (0..banks.len()).cycle().skip(index + 1) {
+            banks[bank] += 1;
+            blocks -= 1;
+            if blocks == 0 {
+                break;
+            }
+        }
+    }
+    unreachable!()
+}
+
+fn main() {
+    let mut input = String::new();
+    io::stdin().read_to_string(&mut input).unwrap();
+
+    println!("Part 1: {}", solve1(input.trim()));
+}
+
+#[test]
+fn part1() {
+    assert_eq!(5, solve1("0 2 7 0"));
+}