aboutsummaryrefslogtreecommitdiff
path: root/src/day10pt2.rs
blob: c05402fc3e62997a65b92ba8bbc1e31f7132db2f (plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
fn mogu_levo(c: char) -> bool {
    return c == 'S' || c == 'L' || c == 'F' || c == '-';
}

fn mogu_desno(c: char) -> bool {
    return c == 'S' || c == '7' || c == 'J' || c == '-';
}

fn mogu_gore(c: char) -> bool {
    return c == 'S' || c == '7' || c == 'F' || c == '|';
}

fn mogu_dole(c: char) -> bool {
    return c == 'S' || c == 'L' || c == 'J' || c == '|';
}

fn bfs(input: &Vec<String>, was: &mut Vec<Vec<bool>>, x: i32, y: i32, s: u32) -> u32 {
    if s > 2 && input[y as usize].chars().nth(x as usize).unwrap() == 'S' {
        return s;
    }

    if was[y as usize][x as usize] {
        return 0;
    }

    was[y as usize][x as usize] = true;

    for (dx, dy) in [(-1, 0), (1, 0), (0, -1), (0, 1)] {
        let nx = x + dx;
        let ny = y + dy;
        if nx >= 0 && nx < input[y as usize].len() as i32 && ny >= 0 && ny < input.len() as i32 {
            let t = input[y as usize].chars().nth(x as usize).unwrap();
            let n = input[ny as usize].chars().nth(nx as usize).unwrap();

            let ind: bool;
            if dx == 1 {
                ind = mogu_levo(t) && mogu_desno(n);
            } else if dx == -1 {
                ind = mogu_desno(t) && mogu_levo(n);
            } else if dy == 1 {
                ind = mogu_gore(t) && mogu_dole(n);
            } else {
                ind = mogu_dole(t) && mogu_gore(n);
            }

            if !ind {
                continue;
            }

            let ret = bfs(input, was, nx, ny, s + 1);
            //            was[ny as usize][nx as usize] = false;

            if ret != 0 {
                return ret;
            }
        }
    }
    return 0;
}

fn set_s(input: &mut Vec<String>, xs: i32, ys: i32) {
    let levi = mogu_levo(input[ys as usize].chars().nth(xs as usize - 1).unwrap());
    let gornji = mogu_gore(input[ys as usize - 1].chars().nth(xs as usize).unwrap());
    let donji = mogu_dole(input[ys as usize + 1].chars().nth(xs as usize).unwrap());
    let desni = mogu_desno(input[ys as usize].chars().nth(xs as usize + 1).unwrap());

    if donji && gornji {
        input[ys as usize] = input[ys as usize].replace("S", "|");
    } else if donji && levi {
        input[ys as usize] = input[ys as usize].replace("S", "7");
    } else if donji && desni {
        input[ys as usize] = input[ys as usize].replace("S", "F");
    } else if gornji && levi {
        input[ys as usize] = input[ys as usize].replace("S", "J");
    } else if gornji && desni {
        input[ys as usize] = input[ys as usize].replace("S", "L");
    } else if levi && desni {
        input[ys as usize] = input[ys as usize].replace("S", "-");
    } else {
        panic!();
    }
}

fn part2(input: &Vec<String>, was: Vec<Vec<bool>>) -> u32 {
    let mut s: u32 = 0;
    let mut en: bool;
    let mut lc: char;

    for i in 0..input.len() {
        en = false;
        lc = 'S';

        for j in 0..input[i].len() {
            let c = input[i].chars().nth(j).unwrap();

            if !was[i][j] {
                s += en as u32;
                continue;
            }

            if c == '-' {
                continue;
            } else if c == '|' {
                en = !en;
                continue;
            }

            if lc == 'S' {
                lc = c;
                if lc == 'J' || lc == '7' {
                    panic!();
                }
            } else {
                if (lc == 'F' && c == 'J') || (lc == 'L' && c == '7') {
                    en = !en;
                }
                lc = 'S';
            }
        }
    }

    return s;
}

pub fn main() {
    let txt = std::fs::read_to_string("./input/day10.txt").unwrap();
    let mut input: Vec<_> = vec![];
    for line in txt.lines() {
        input.push(line.to_string());
    }

    let mut xs = 0;
    let mut ys = 0;

    for i in 0..input.len() {
        for j in 0..input[i].len() {
            if input[i].chars().nth(j).unwrap() == 'S' {
                xs = j as i32;
                ys = i as i32;
            }
        }
    }

    let mut was = vec![vec![false; input[0].len()]; input.len()];
    bfs(&input, &mut was, xs, ys, 0);
    set_s(&mut input, xs, ys);

    println!("{}", part2(&input, was));
}