summary refs log tree commit diff homepage
diff options
context:
space:
mode:
-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"));
+}
il <https://github.com/neovim/neovim/pull/9633> is merged and appears in a release. 2019-02-18Use hi -o anchor in upJune McEnroe 2019-02-18Don't match nested parentheses in Tag for CJune McEnroe Fixes mistaken highlight of: pngWrite(file, (uint8_t []) { 0, 0, 0 }, 3); 2019-02-18Match whitespace between * [] {}June McEnroe 2019-02-18Fix function-like #define regexJune McEnroe A define like #define FOO (1) is not function-like. 2019-02-18Match Tag in RustJune McEnroe 2019-02-18Match sh functions as TagJune McEnroe 2019-02-18Match Sh and Ss as Tag in mdocJune McEnroe 2019-02-18Match statics and typedefs as TagJune McEnroe 2019-02-18Clean up htmlHeaderJune McEnroe 2019-02-18Remove hi line numberingJune McEnroe Tags are much better for referring to specific parts of a file and line numbering is better done by a post-processing tool such as cat -n or producing a two-column HTML <table>. 2019-02-18Add Tag class to hiJune McEnroe 2019-02-17Generate HTML with hi -n -f html -o anchorJune McEnroe Running hi twice to insert stuff between the head and the content is a bit of a hack but oh well. 2019-02-17Add hi -f html -o anchor for line number linksJune McEnroe 2019-02-17Simplify temp trap in upJune McEnroe 2019-02-17Add line numbers to hiJune McEnroe Renames previous -n option to -m to stay consistent with cat -n. Prefixing lines with line numbers affects where the first tab indent ends up relative to the text above it. Not sure if it's worth fixing somehow. 2019-02-17Always split spans after newlinesJune McEnroe Simplifies ANSI and IRC output code, and prepares for line numbered output. 2019-02-15Color format specifiers light cyan in vimJune McEnroe 2019-02-15Highlight Interp as yellowJune McEnroe 2019-02-15Highlight strings in sh command substitutionsJune McEnroe 2019-02-15Add nmap gpJune McEnroe 2019-02-14Avoid newline when copying URL to pasteboardJune McEnroe 2019-02-13Add forgotten "sixth" book of H2G2June McEnroe