about summary refs log tree commit diff
path: root/day03.rs
blob: 2fe5db538833b0e4caad9d5a43a4fe100afd0a66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
use std::fs::File;
use std::collections::{HashSet, HashMap};
use std::io::{BufRead, BufReader};

fn main() {
    let f = File::open("day03").unwrap();

    let d: Vec<_> = BufReader::new(&f)
        .lines()
        .map(|line| {
            let line = line.unwrap();
            let v: Vec<&str> = line.split(
                |c| c == '#' || c == ',' || c == ' ' || c == 'x' || c == ':'
            ).collect();
            (
                v[1].parse::<i32>().unwrap(),
                v[3].parse::<i32>().unwrap(),
                v[4].parse::<i32>().unwrap(),
                v[6].parse::<i32>().unwrap(),
                v[7].parse::<i32>().unwrap(),
            )
        })
        .collect();

    let mut seen = HashMap::new();
    let mut seen_twice = HashSet::new();

    let mut claims: HashSet<_> = d.iter().map(|x| x.0).collect();

    for v in d {
        for x in v.1..v.1 + v.3 {
            for y in v.2..v.2 + v.4 {
                if let Some(id) = seen.insert((x, y), v.0) {
                    seen_twice.insert((x, y));
                    claims.remove(&id);
                    claims.remove(&v.0);
                }
            }
        }
    }

    println!("{}", seen_twice.len());
    for c in claims {
        println!("{}", c)
    }
}