summary refs log tree commit diff homepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-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"));
+}
r> 2022-02-20Make sure new cap is actually larger than new lengthJune McEnroe 2022-02-20Remove unused mbs.len field from struct EditJune McEnroe 2022-02-19Remove unneeded includes in ui.cJune McEnroe 2022-02-19Reimplement tab completeJune McEnroe 2022-02-19Handle errors from editFn, etc.June McEnroe 2022-02-19Reimplement text macrosJune McEnroe 2022-02-19Factor out input handling to input.cJune McEnroe 2022-02-19Factor out window management to window.cJune McEnroe 2022-02-19Enable -Wmissing-prototypesJune McEnroe 2022-02-19Fix edit.[ch] license notice additional permissionsJune McEnroe 2022-02-19Run line editing testsJune McEnroe 2022-02-18Implement new line editing "library"June McEnroe 2022-02-18Simplify cursor positioning in inputJune McEnroe 2022-02-18Fix M-f orderingJune McEnroe 2022-02-12Move sandman build to scripts/MakefileJune McEnroe 2022-02-12Use compat_readpassphrase.c on LinuxJune McEnroe 2022-02-12Copy RPP defines from oconfigureJune McEnroe