Solutions for 2022, as well as 2015-2018 and 2019 up to day 11
This commit is contained in:
commit
1895197c49
722 changed files with 375457 additions and 0 deletions
8
2018/day13_mine_cart_madness/Cargo.toml
Normal file
8
2018/day13_mine_cart_madness/Cargo.toml
Normal file
|
@ -0,0 +1,8 @@
|
|||
[package]
|
||||
name = "day13_mine_cart_madness"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
233
2018/day13_mine_cart_madness/challenge.txt
Normal file
233
2018/day13_mine_cart_madness/challenge.txt
Normal file
|
@ -0,0 +1,233 @@
|
|||
A crop of this size requires significant logistics to transport produce, soil, fertilizer, and so on. The Elves are very busy pushing things around in *carts* on some kind of rudimentary system of tracks they've come up with.
|
||||
|
||||
Seeing as how cart-and-track systems don't appear in recorded history for another 1000 years, the Elves seem to be making this up as they go along. They haven't even figured out how to avoid collisions yet.
|
||||
|
||||
You map out the tracks (your puzzle input) and see where you can help.
|
||||
|
||||
Tracks consist of straight paths (`|` and `-`), curves (`/` and `\`), and intersections (`+`). Curves connect exactly two perpendicular pieces of track; for example, this is a closed loop:
|
||||
|
||||
```
|
||||
/----\
|
||||
| |
|
||||
| |
|
||||
\----/
|
||||
|
||||
```
|
||||
|
||||
Intersections occur when two perpendicular paths cross. At an intersection, a cart is capable of turning left, turning right, or continuing straight. Here are two loops connected by two intersections:
|
||||
|
||||
```
|
||||
/-----\
|
||||
| |
|
||||
| /--+--\
|
||||
| | | |
|
||||
\--+--/ |
|
||||
| |
|
||||
\-----/
|
||||
|
||||
```
|
||||
|
||||
Several *carts* are also on the tracks. Carts always face either up (`^`), down (`v`), left (`<`), or right (`>`). (On your initial map, the track under each cart is a straight path matching the direction the cart is facing.)
|
||||
|
||||
Each time a cart has the option to turn (by arriving at any intersection), it turns *left* the first time, goes *straight* the second time, turns *right* the third time, and then repeats those directions starting again with *left* the fourth time, *straight* the fifth time, and so on. This process is independent of the particular intersection at which the cart has arrived - that is, the cart has no per-intersection memory.
|
||||
|
||||
Carts all move at the same speed; they take turns moving a single step at a time. They do this based on their *current location*: carts on the top row move first (acting from left to right), then carts on the second row move (again from left to right), then carts on the third row, and so on. Once each cart has moved one step, the process repeats; each of these loops is called a *tick*.
|
||||
|
||||
For example, suppose there are two carts on a straight track:
|
||||
|
||||
```
|
||||
| | | | |
|
||||
v | | | |
|
||||
| v v | |
|
||||
| | | v X
|
||||
| | ^ ^ |
|
||||
^ ^ | | |
|
||||
| | | | |
|
||||
|
||||
```
|
||||
|
||||
First, the top cart moves. It is facing down (`v`), so it moves down one square. Second, the bottom cart moves. It is facing up (`^`), so it moves up one square. Because all carts have moved, the first tick ends. Then, the process repeats, starting with the first cart. The first cart moves down, then the second cart moves up - right into the first cart, colliding with it! (The location of the crash is marked with an `X`.) This ends the second and last tick.
|
||||
|
||||
Here is a longer example:
|
||||
|
||||
```
|
||||
/->-\
|
||||
| | /----\
|
||||
| /-+--+-\ |
|
||||
| | | | v |
|
||||
\-+-/ \-+--/
|
||||
\------/
|
||||
|
||||
/-->\
|
||||
| | /----\
|
||||
| /-+--+-\ |
|
||||
| | | | | |
|
||||
\-+-/ \->--/
|
||||
\------/
|
||||
|
||||
/---v
|
||||
| | /----\
|
||||
| /-+--+-\ |
|
||||
| | | | | |
|
||||
\-+-/ \-+>-/
|
||||
\------/
|
||||
|
||||
/---\
|
||||
| v /----\
|
||||
| /-+--+-\ |
|
||||
| | | | | |
|
||||
\-+-/ \-+->/
|
||||
\------/
|
||||
|
||||
/---\
|
||||
| | /----\
|
||||
| /->--+-\ |
|
||||
| | | | | |
|
||||
\-+-/ \-+--^
|
||||
\------/
|
||||
|
||||
/---\
|
||||
| | /----\
|
||||
| /-+>-+-\ |
|
||||
| | | | | ^
|
||||
\-+-/ \-+--/
|
||||
\------/
|
||||
|
||||
/---\
|
||||
| | /----\
|
||||
| /-+->+-\ ^
|
||||
| | | | | |
|
||||
\-+-/ \-+--/
|
||||
\------/
|
||||
|
||||
/---\
|
||||
| | /----<
|
||||
| /-+-->-\ |
|
||||
| | | | | |
|
||||
\-+-/ \-+--/
|
||||
\------/
|
||||
|
||||
/---\
|
||||
| | /---<\
|
||||
| /-+--+>\ |
|
||||
| | | | | |
|
||||
\-+-/ \-+--/
|
||||
\------/
|
||||
|
||||
/---\
|
||||
| | /--<-\
|
||||
| /-+--+-v |
|
||||
| | | | | |
|
||||
\-+-/ \-+--/
|
||||
\------/
|
||||
|
||||
/---\
|
||||
| | /-<--\
|
||||
| /-+--+-\ |
|
||||
| | | | v |
|
||||
\-+-/ \-+--/
|
||||
\------/
|
||||
|
||||
/---\
|
||||
| | /<---\
|
||||
| /-+--+-\ |
|
||||
| | | | | |
|
||||
\-+-/ \-<--/
|
||||
\------/
|
||||
|
||||
/---\
|
||||
| | v----\
|
||||
| /-+--+-\ |
|
||||
| | | | | |
|
||||
\-+-/ \<+--/
|
||||
\------/
|
||||
|
||||
/---\
|
||||
| | /----\
|
||||
| /-+--v-\ |
|
||||
| | | | | |
|
||||
\-+-/ ^-+--/
|
||||
\------/
|
||||
|
||||
/---\
|
||||
| | /----\
|
||||
| /-+--+-\ |
|
||||
| | | X | |
|
||||
\-+-/ \-+--/
|
||||
\------/
|
||||
|
||||
```
|
||||
|
||||
After following their respective paths for a while, the carts eventually crash. To help prevent crashes, you'd like to know *the location of the first crash*. Locations are given in `X,Y` coordinates, where the furthest left column is `X=0` and the furthest top row is `Y=0`:
|
||||
|
||||
```
|
||||
111
|
||||
0123456789012
|
||||
0/---\
|
||||
1| | /----\
|
||||
2| /-+--+-\ |
|
||||
3| | | X | |
|
||||
4\-+-/ \-+--/
|
||||
5 \------/
|
||||
|
||||
```
|
||||
|
||||
In this example, the location of the first crash is `*7,3*`.
|
||||
|
||||
Your puzzle answer was `119,41`.
|
||||
|
||||
\--- Part Two ---
|
||||
----------
|
||||
|
||||
There isn't much you can do to prevent crashes in this ridiculous system. However, by predicting the crashes, the Elves know where to be in advance and *instantly remove the two crashing carts* the moment any crash occurs.
|
||||
|
||||
They can proceed like this for a while, but eventually, they're going to run out of carts. It could be useful to figure out where the last cart that *hasn't* crashed will end up.
|
||||
|
||||
For example:
|
||||
|
||||
```
|
||||
/>-<\
|
||||
| |
|
||||
| /<+-\
|
||||
| | | v
|
||||
\>+</ |
|
||||
| ^
|
||||
\<->/
|
||||
|
||||
/---\
|
||||
| |
|
||||
| v-+-\
|
||||
| | | |
|
||||
\-+-/ |
|
||||
| |
|
||||
^---^
|
||||
|
||||
/---\
|
||||
| |
|
||||
| /-+-\
|
||||
| v | |
|
||||
\-+-/ |
|
||||
^ ^
|
||||
\---/
|
||||
|
||||
/---\
|
||||
| |
|
||||
| /-+-\
|
||||
| | | |
|
||||
\-+-/ ^
|
||||
| |
|
||||
\---/
|
||||
|
||||
```
|
||||
|
||||
After four very expensive crashes, a tick ends with only one cart remaining; its final location is `*6,4*`.
|
||||
|
||||
*What is the location of the last cart* at the end of the first tick where it is the only cart left?
|
||||
|
||||
Your puzzle answer was `45,136`.
|
||||
|
||||
Both parts of this puzzle are complete! They provide two gold stars: \*\*
|
||||
|
||||
At this point, you should [return to your Advent calendar](/2018) and try another puzzle.
|
||||
|
||||
If you still want to see it, you can [get your puzzle input](13/input).
|
191
2018/day13_mine_cart_madness/src/lib.rs
Normal file
191
2018/day13_mine_cart_madness/src/lib.rs
Normal file
|
@ -0,0 +1,191 @@
|
|||
#[derive(Clone, Copy)]
|
||||
enum Direction { Up, Down, Left, Right }
|
||||
|
||||
impl Direction {
|
||||
fn coming_from(&self, (old_x, old_y): (usize, usize)) -> (usize, usize) {
|
||||
match self {
|
||||
Self::Up => (old_x, old_y-1),
|
||||
Self::Down => (old_x, old_y+1),
|
||||
Self::Left => (old_x-1, old_y),
|
||||
Self::Right => (old_x+1, old_y),
|
||||
}
|
||||
}
|
||||
|
||||
fn by_turning(&self, next_turn: &Turning) -> Self {
|
||||
match (self, next_turn) {
|
||||
(d, Turning::Straight) => *d,
|
||||
(Self::Up, Turning::Left) | (Self::Down, Turning::Right) => Self::Left,
|
||||
(Self::Left, Turning::Left) | (Self::Right, Turning::Right) => Self::Down,
|
||||
(Self::Down, Turning::Left) | (Self::Up, Turning::Right) => Self::Right,
|
||||
(Self::Right, Turning::Left) | (Self::Left, Turning::Right) => Self::Up,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Clone, Copy)]
|
||||
enum Turning { Left, Straight, Right }
|
||||
|
||||
impl Turning {
|
||||
fn next(&self) -> Self {
|
||||
match self {
|
||||
Turning::Left => Turning::Straight,
|
||||
Turning::Straight => Turning::Right,
|
||||
Turning::Right => Turning::Left,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
enum Track { Horizontal, Vertical, NE, NW, Intersection, None }
|
||||
|
||||
#[derive(Clone)]
|
||||
struct Cart {
|
||||
position: (usize, usize),
|
||||
direction: Direction,
|
||||
next_turn: Turning,
|
||||
}
|
||||
|
||||
impl Cart {
|
||||
fn tick(&mut self, carts: &[Cart], track: &[Vec<Track>]) -> Option<((usize, usize), usize)> {
|
||||
let (old_x, old_y) = self.position;
|
||||
match track[old_y][old_x] {
|
||||
Track::Horizontal | Track::Vertical => (),
|
||||
Track::Intersection => {
|
||||
let next_turn = &self.next_turn;
|
||||
self.direction = self.direction.by_turning(next_turn);
|
||||
self.next_turn = self.next_turn.next();
|
||||
},
|
||||
Track::NE => {
|
||||
self.direction = match self.direction {
|
||||
Direction::Up => Direction::Right,
|
||||
Direction::Down => Direction::Left,
|
||||
Direction::Left => Direction::Down,
|
||||
Direction::Right => Direction::Up,
|
||||
};
|
||||
},
|
||||
Track::NW => {
|
||||
self.direction = match self.direction {
|
||||
Direction::Up => Direction::Left,
|
||||
Direction::Down => Direction::Right,
|
||||
Direction::Left => Direction::Up,
|
||||
Direction::Right => Direction::Down,
|
||||
};
|
||||
},
|
||||
Track::None => panic!("Car is off track at {}, {}", old_x, old_y),
|
||||
}
|
||||
let new_position = self.direction.coming_from((old_x, old_y));
|
||||
self.position = new_position;
|
||||
carts.iter().position(|cart| cart.position == new_position).map(|idx| (new_position, idx))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn run(input: &str) -> ((usize, usize), (usize, usize)) {
|
||||
let (track, mut carts) = parse_track(input);
|
||||
let mut first = (0, 0);
|
||||
while carts.len() > 1 {
|
||||
let mut idx = 0;
|
||||
loop {
|
||||
if idx == carts.len() {
|
||||
break;
|
||||
}
|
||||
let mut cart = carts[idx].clone();
|
||||
if let Some(crash) = cart.tick(&carts, &track) {
|
||||
if first == (0, 0) {
|
||||
first = crash.0;
|
||||
}
|
||||
if crash.1 > idx {
|
||||
carts.remove(crash.1);
|
||||
carts.remove(idx);
|
||||
} else {
|
||||
carts.remove(idx);
|
||||
carts.remove(crash.1);
|
||||
idx -= 1;
|
||||
}
|
||||
} else {
|
||||
carts[idx] = cart;
|
||||
idx += 1;
|
||||
}
|
||||
}
|
||||
carts.sort_by(|a, b| match a.position.1.cmp(&b.position.1) {
|
||||
std::cmp::Ordering::Equal => a.position.0.cmp(&b.position.0),
|
||||
diff => diff,
|
||||
});
|
||||
}
|
||||
let second = carts[0].position;
|
||||
(first, second)
|
||||
}
|
||||
|
||||
fn parse_track(input: &str) -> (Vec<Vec<Track>>, Vec<Cart>) {
|
||||
let mut carts = Vec::new();
|
||||
let mut track = Vec::new();
|
||||
for (y, row) in input.lines().enumerate() {
|
||||
let mut track_row = Vec::new();
|
||||
row.chars().enumerate().for_each(|(x, c)| {
|
||||
match c {
|
||||
' ' => track_row.push(Track::None),
|
||||
'-' => track_row.push(Track::Horizontal),
|
||||
'|' => track_row.push(Track::Vertical),
|
||||
'/' => track_row.push(Track::NE),
|
||||
'\\' => track_row.push(Track::NW),
|
||||
'+' => track_row.push(Track::Intersection),
|
||||
'^' => {
|
||||
track_row.push(Track::Vertical);
|
||||
carts.push(Cart {
|
||||
position: (x, y),
|
||||
direction: Direction::Up,
|
||||
next_turn: Turning::Left,
|
||||
});
|
||||
},
|
||||
'>' => {
|
||||
track_row.push(Track::Horizontal);
|
||||
carts.push(Cart {
|
||||
position: (x, y),
|
||||
direction: Direction::Right,
|
||||
next_turn: Turning::Left,
|
||||
});
|
||||
},
|
||||
'<' => {
|
||||
track_row.push(Track::Horizontal);
|
||||
carts.push(Cart {
|
||||
position: (x, y),
|
||||
direction: Direction::Left,
|
||||
next_turn: Turning::Left,
|
||||
});
|
||||
},
|
||||
'v' => {
|
||||
track_row.push(Track::Vertical);
|
||||
carts.push(Cart {
|
||||
position: (x, y),
|
||||
direction: Direction::Down,
|
||||
next_turn: Turning::Left,
|
||||
});
|
||||
},
|
||||
_ => panic!("Unexpeted track token: {c}"),
|
||||
}
|
||||
});
|
||||
track.push(track_row);
|
||||
}
|
||||
|
||||
(track, carts)
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
use std::fs::read_to_string;
|
||||
|
||||
fn read_file(name: &str) -> String {
|
||||
read_to_string(name).expect(&format!("Unable to read file: {name}")[..])
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_sample() {
|
||||
let sample_input = read_file("tests/sample_input");
|
||||
assert_eq!(run(&sample_input), ((2, 0), (6, 4)));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_challenge() {
|
||||
let challenge_input = read_file("tests/challenge_input");
|
||||
assert_eq!(run(&challenge_input), ((119, 41), (45, 136)));
|
||||
}
|
||||
}
|
150
2018/day13_mine_cart_madness/tests/challenge_input
Normal file
150
2018/day13_mine_cart_madness/tests/challenge_input
Normal file
|
@ -0,0 +1,150 @@
|
|||
/--------------------------------------------------\ /----------------\
|
||||
/---------+--------------------------------------------------+-------------\ | |/-------------\
|
||||
| /-----+---------------------------------\ | /--+--------------------------+-------\ || |
|
||||
| | | | /-------+----------+--+--------------------------+-------+---\ || |
|
||||
| | | /------------------+--------+-------+\ | | | | | || |
|
||||
| | | /---------+------------------+--------+--\ || | | /-----+-------+---+----++-------------+---\
|
||||
| | | | | | | | || | | | | | | || | |
|
||||
/-+---+-----+----+---\ | | | | || |/-+--------------------+-----+-------+---+----++-------------+\ |
|
||||
| | | | | | | /--------------+--------+--+----++---------++-+--------------------+-----+------\| | || || |
|
||||
| |/--+-----+----+---+-----+---+--------------+--------+--+----++\ || | | | || | || || |
|
||||
| || | | | | | | | | | /+++--------++-+--------------------+\ | || | || || |
|
||||
| || | /-+----+---+-----+---+--------------+--\ | | |||| || | /-----------------++\ | || | || || |
|
||||
| || /+---+-+--\ | | | | | | | | |||| || | | ||| | || | || || |
|
||||
/-+-++-++---+-+--+-+---+-----+---+--------------+--+-----+--+---++++--------++-+--+----------\ ||| | || | || || |
|
||||
| | || || | | | | | |/--+--------------+\ | | | |||| || | | | ||| | || | |\-------------/| |
|
||||
| | || || | | | | |/----++--+--------------++-+-----+--+---++++--------++-+--+----------+---\ ||| | || | | | |
|
||||
| | || || /+-+--+-+---++----++--+--------------++-+-----+--+---++++--------++-+--+----------+---+--+++\ | || | | | |
|
||||
| | || || || | | | || || | /------++-+-----+--+---++++--------++-+--+----------+---+--++++--+---\ || | | | |
|
||||
| | || || || | | | || || | | || | | | |||| || | | | | |||| | | || | | | |
|
||||
| | || || || | | | || || /+-------+------++-+-----+--+---++++---->---++-+--+----------+---+--++++--+---+--++---+-\ | | |
|
||||
| | || || || | | | || || || | || | | | |||| || | | | | |||| | | || | | | | |
|
||||
| | || || || | | | || || || | || | | | |||| || | | | | |||| | | || | | | | |
|
||||
| | ||/++--++-+--+-+---++\ || || | || | | | |||| || | | | | |||| | | || | | | | |
|
||||
/+-+-+++++\ || | | | ||| || || | || |/----+--+---++++--------++-+--+----------+---+--++++--+---+--++---+-+-\| | |
|
||||
/---++-+-++++++-++-+--+-+---+++---++-++----->-+------++-++----+--+---++++--------++\| | /-----+---+--++++--+---+--++---+-+-++---------------+\ |
|
||||
| || | |||||| || \--+-+---+++---++-++-------+------++-++----+--+---+/|| |\++--+----+-----+---+--++++--+---+--++---+-+-++---------------/| |
|
||||
| || | |||||| || | | ||| || || /-+------++-++----+--+---+-++--------+-++--+----+-----+---+--++++--+---+--++--\|/+-++------------\ | |
|
||||
| || | |||||| || | | ||| || || | | /---++-++----+-\| /+-++--------+-++--+----+-----+-\ | |||| | | || |||| || | | |
|
||||
| || | |||||| || | | ||| || || | | | || || /+-++--++-++--\ | ||/-+----+-----+-+-+--++++--+---+--++--++++-++--\ | | |
|
||||
| |\-+-++++++-++----+-+---+++---++-++-----+-+--+---++-++---++-++--++-++--+-----+-+++-+----+-----/ | | |||| | | || |||| || | | | |
|
||||
| | | |||||| || | | ||| || || | | | || || || || || || | | ||| | | | | |||| | | /++--++++-++--+--------\| | |
|
||||
| | | |||||| || | | ||| || || /--+-+--+---++-++---++-++--++-++--+-----+-+++-+----+--\ | | |||| | | ||| |||| || | || | |
|
||||
| | | |\++++-++----+-+---+++---++-++--+--+-+--+---++-++---++-++--++-+/ | | ||| | /-+--+----+-+--++++--+---+-+++--++++-++--+----\ || | |
|
||||
| | | \-++++-++----+-+---+++---++-++--+--+-+--+---++-++---++-++--++-+---+-----+-+/| | | | |/---+-+--++++--+---+-+++--++++-++-\| | || | |
|
||||
| | | |||| \+----+-+---+++---++-++--+--+-+--+---++-++---++-++--++-+---+-----+-+-+-+--+-+--++---+-+--+++/ | | ||| |||| || || | || | |
|
||||
| | | |||| | | | ||| || || | | | | || || || || || | | | | | | | | || | | ||| | | ||| |||| || || | || | |
|
||||
| | | |||| | | | ||| /++-++--+--+-+--+---++-++---++-++--++-+---+----\| | | | | | || | | ||| | | ||| |||| || || | || | |
|
||||
| | \---++++--+----+-+---/|| ||| || | | | | || || /++-++--++-+\ | || | | | | | || | | ||| | | |||/-++++-++-++----+---++---+-+\
|
||||
| | |||| | | | || ||| || | | | | || || ||| || || || | || | | | | | || | | /+++---+---+\|||| |||| || || | || | ||
|
||||
| | |||| | /+-+----++--+++-++--+--+-+--+---++-++\ ||| || || || | /--++-+-+-+-\|/+--++---+-+-++++---+---++++++-++++-++-++----+---++--\| ||
|
||||
| \------+++/ | || | || ||| ||/-+--+-+--+---++-+++-+++-++--++-++--+-+--++-+-+-+-++++--++---+-+-++++-\ | |||||| |||| || || | || || ||
|
||||
| ||| | || | || ||| ||| | | | | || |||/+++-++--++-++--+-+--++-+-+-+-++++->++---+-+-++++-+-+---++++++-++++-++-++--\ | || || ||
|
||||
| ||| | || | || ||| ||| \--+-+--+---++-+++++++-++--++-++--+-+--++-+-+-+-++++--/| | | |||| | | |||||| |||| || || | | || || ||
|
||||
| ||| /+---++-+----++--+++-+++----+-+--+---++-+++++++-++--++-++--+-+--++-+-+-+-++++--\| | | |||| | | |||||| |||| || || | | || || ||
|
||||
| ||| || || | || ||| ||| | | \---++-+++++++-/| || || | | || | | | |\++--++---+-+-++++-+-+---++++++-++++-++-++--+-/ || || ||
|
||||
| ||| || || | || ||v ||| | | || ||||||| | || || | | || | | |/+-++--++---+-+-++++-+-+---++++++-++++-++-++-\| || || ||
|
||||
| |||/-++---++-+----++--+++-+++----+-+------++-+++++++--+--++-++--+-+--++-+-+-+++-++--++---+-+-++++-+-+--\|||||| ||||/++-++-++-\ || || ||
|
||||
| |||| || || | /++--+++-+++----+-+------++-+++++++-\| \+-++--+-+--++-+-+-+++-++--++---/ | |||| | | ||||||| ||||||| || || | || || ||
|
||||
| |||| || || | ||| ||| \++----+-+------++-+++++++-++---+-++--+-+--++-+-+-+++-++--++-----+-++++-+-+--+++++++-+++/||| || || | || || ||
|
||||
| |||| || || | ||| ||| || | | || ||||||| || | || | | || | | ||| || || | |||| | | ||||||| ||| ||| || || | || || ||
|
||||
| |||| || /-++-+---+++--+++--++----+-+------++-+++++++-++---+-++--+-+--++-+-+-+++-++--++-----+-++++-+-+-\||||||| ||| ||| || || | || || ||
|
||||
| |||| || | || | ||| ||| || |/+------++-+++++++-++---+-++--+\| || | | ||| ||/-++-----+-++++-+-+-++++++++-+++-+++\|| || | || || ||
|
||||
| /-------++++-++-+-++-+---+++--+++--++----+++------++-+++++++-++-\ | || ||| || | | ||| ||| || | |||| | | |||||||| ||| |||||| || | || || ||
|
||||
| | |||| || | || | ||| ||| || ||| || ||||||| || | | || ||| || | | ||| ||| || | |||| | | |||||||| ||| |||||| || | || || ||
|
||||
| | |||| || | || | ||| ||| || ||| || ||||||| || | | || ||| || | | ||| ||| || | |||| | |/++++++++-+++-++++++-++-+-\ || || ||
|
||||
| | |||| || | || | ||| ||| || ||| || ||||||| || | ^ || ||| || | | ||| ||| || | |||| | |||||||||| ||| |||||| || | | || || ||
|
||||
| | |||| || | ||/+---+++--+++--++----+++\ || ||||||| || | | || ||| || | | |^| ||| |\-----+-++++-+-++++++++++-+++-++++/| || | | || || ||
|
||||
| | |||| || | |||| ||| ||\--++----++++-----+/ ||||||| || | | || ||| || | | ||| ||| | | |||| | |||||||||| ||| |||| | || | | || || ||
|
||||
| | /----++++-++-+-++++---+++--++---++----++++-----+--+++++++-++-+-+-++--+++\ || | | ||| ||| | | |||| | |||||||||\-+++-++++-+-++-+-+-++--++-+/
|
||||
| | | |||| || | |||| ||| || || |||| | ||||||| || | | || |||| || | \-+++-+++-+------+-++++-+-+++++++++--+++-++++-/ || | | || || |
|
||||
| | | |||| || | |||| ||| || || |||| | ||||||| || |/+-++--++++-++-+---+++-+++-+------+-++++-+-+++++++++--+++\|||| || | | || || |
|
||||
| | | |||| |\-+-++++---+++--++---++----++++-----+--/|||||| || ||| || |||| || | ||| ||| | | |||| | ||||||||| |^|||||| || | | || || |
|
||||
| | | |||| | | |||| |||/-++---++----++++-----+---++++++-++-+++-++--++++-++-+---+++-+++-+----\ | |||| | ||||||||| |||||||| || | | || || |
|
||||
| | | |||| | | |||| |||| || || |||| | |||||| || ||| || |||| || | ||| \++-+----+-+-++++-+-+++++++++--++++++++---++-+-+-++--/| |
|
||||
| | | /-++++-+--+-++++---++++-++---++----++++-----+---++++++-++-+++-++-\|||| || | ||| || | | | |||| | ||||||||| |||||||| || | | || | |
|
||||
| | | | |||| | | |||| |||| || || |||| | |||||| || ||| || ||||| || | ||| || | | | |||| | \++++++++--++++++/| || | | || | |
|
||||
| | | | |||| | | |||| |||| || || |||| | /++++++-++-+++-++-+++++-++-+---+++--++\| | | |||| | |||||||| |||||| | || | | || | |
|
||||
| | | | |||| | | |||| |||| || || |||| | |||||||/++-+++-++-+++++-++-+---+++--++++----+-+\|||| | |||||||| |||||| | || | | || | |
|
||||
| | | /+-++++-+--+-++++---++++-++---++----++++-----+--++++++++++-+++-++-+++++-++-+-\ ||| |||| | |||||| | |||||||| |||||| | || | | || | |
|
||||
| | | || |||| | | |||| |||| || \+----++++-----+--++++++++++-+++-++-+++++-++-+-+-+++--++++----+-++++++-+--++++++/| |||||| | || | | || | |
|
||||
| | | || |\++-+--+-+/|| |||| || | |||| | |||||||||| ||\-++-+++++-++-+-+-+++--++++----+-++++/| | |||||| | |||||| | || | | || | |
|
||||
| | | || | || | | | || |||| || | |||| | |||||\++++-++--++-+/||| || | |/+++--++++----+-++++-+-+--++++++-+--++++++-+-\ || | | || | |
|
||||
|/-+--+-++-+-++-+--+-+\|| |||| || | |||| | ||||| |||| || || | ||| || | ||||| |||| | |||\-+-+--++++++-+--++++++-+-+-++-+-+-++---+-/
|
||||
|| | | || | || | | |||| |||| || | |||| | ||||| |||| || || | ||| || | ||||| |||| | |||/-+-+--++++++-+--++++++-+-+-++-+\| || |
|
||||
|| | | || | || | | |||| |||| || | /--++++-----+--+++++-++++-++--++-+-+++-++-+-+++++--++++----+-++++-+-+--++++++-+--++++++-+-+-++-+++-++---+--\
|
||||
|| | | || | || | | \+++---++++-++----+-+--++++-----+--++/|| |||| || || | |\+-++-+-++++/ |||| | |||| | | |||||| | |||||| | | || ||| || | |
|
||||
|| | | || | || | | ||| |||| || | | |||| /-+--++-++-++++-++--++-+-+-+-++-+-++++---++++----+-++++-+-+--++++++-+-\|||||| | | || ||| || | |
|
||||
|| | | || \-++-+--+--+++---++/| || | | |||| | | || || |||| || || | | | || | |||| /++++----+-++++-+-+--++++++-+-+++++++-+-+-++\||| || | |
|
||||
|| | | || || | | ||| || | |\----+-+--++++---+-+--++-++-++++-++--/| | | | ||/+-++++--+++++----+-++++-+-+--++++++-+-+++++++\| | |||||| || | |
|
||||
|| | | || || | | ||| || | | | | |||| | | || || |||| || | | | | |||| |||| ||||| | |||| | | |||||| | ||||||||| | |||||| || | |
|
||||
|| | | || || | \--+++---++-+-+-----+-+--++++---+-+--++-++-++++-++---+-+-+-+-++++-++++--+++++----+-++++-+-+--+/|||| | ||||||||| | |||||| || | |
|
||||
|| | | || /++-+-----+++\ || | \-----+-+--++++---+-+--++-++-++++-++---+-+-+-+-/||| |||| ||||| | |||| | | | |||| | ||||||||| | |||||| || | |
|
||||
|| | | || |||/+-----++++--++-+----\ | | |||| | | || || |||| || | | | | ||| |||| ||||| | |||| | | | |||\-+-+++++++++-+-++++++-/| | |
|
||||
|| | | || ||\++-----++++--++-+----+--+-+--++++---+-+--++-++-++++-++---+-+-+-+--+++-++++--+++++----+-++++-+-+--+-/|| | ||||||||| | |||||| | | |
|
||||
|| | ^ || || || |||| /++-+----+--+-+\ |||| | | || || |||| || | | | | ||| |||| ||\++----+-++++-+-+--+--++--+-++++++++/ | |||||| | | |
|
||||
|| | | || || || |||| ||| | | | || |||| \-+--++-++-++++-++---+-+-+-+--+++-++++--++-++----+-++++-+-+--+--++--+-/||||||| | |||||| | | |
|
||||
|| | | ||/-++-++-----++++\||| | | | || |||| | || || |||| |\---+-+-+-+--+++-++++--++-++----+-++++-+-+--+--++--+--+++/||| | |||||| | | |
|
||||
|| | | ||| |\-++-----++++++++-+----+<-+-++-++++-----/ || || |||| | | | | | ||| |||| || || | ||\+-+-+--+--+/ | ||| ||| | v||||| | | |
|
||||
\+-+--+-+++-+--++-----++++++++-+----+--+-++-++++--------++-++-++++-+----+-+-+-+--++/ |||| || ||/---+-++-+-+-+--+--+---+--+++-+++--+-++++++\ | | |
|
||||
| | | ||| | || |||||||| | | | || |||| || || |||| | | | | | |\--++++--++-+++---+-++-+-+-+--+--+---+--+++-++/ | ||||||| | | |
|
||||
| | /+-+++-+--++-----++++++++-+----+--+-++-++++----\ || || \+++-+----+-+-+-+--+---++++--++-+++---+-++-+-+-+--+--+---+--+/| || | ||||||| | | |
|
||||
| | || |||/+--++-----++++++++-+----+--+-++\|||| | || \+--+++-+----+-+-+-+--+---++++--++-+++---+-++-+-+-+--+--+---+--+-+-++---+-+/||||| | | |
|
||||
/-+-+-++-+++++--++-----++++++++-+----+--+-+++++++----+---++-\| \++-+----+-+-+-+--+---++++--++-+++---+-+/ | | | | | | | | || | | ||||| | | |
|
||||
| | | || ||||| || |||||||| | | | ||||||| | || || || | | | | | \---++++--++-+++---+-+--+-+-+--+--+---/ | | || | | ||||| | | |
|
||||
| | | || ||||| || |||||||| | | | ||||||| | || || ||/+----+-+-+-+------++++-\|\-+++---+-+--+-+-+--+--+------+-+-++---+-+-+++++-+---/ |
|
||||
| | | || ||||| || |||||||| | | | |||||||/---+---++-++---++++----+-+-+-+------++++-++--+++---+-+--+-+-+--+--+------+-+-++->-+-+-+++++-+\ |
|
||||
| | | || ||||| || |||||||| | | | |||||||| | || || |||| |/+-+-+------++++-++--+++---+-+--+-+-+--+--+------+-+-++---+-+\||||| || |
|
||||
| | | || |||||/-++-----++++++++-+----+--+-++++++++---+---++-++---++++-\ ||| |/+------++++-++--+++---+-+--+-+-+--+--+------+-+-++---+-+++++++-++----\|
|
||||
| | | || |||||| || |||||||| | | | |||||||| | || || |||| | ||| ||| |||| || ||| | | | | | | | | | || | ||||||| || ||
|
||||
| | \-++-++++++-++-----++++++++-+----+--+-++++++++---+---++-++---+++/ | ||| ||| |||| || ||| | | | | | | | | | || | ||||||| || ||
|
||||
| | || |||||| || |||||||\-+----+--+-++++++++---+---++-++---+++--+--+++-+++------++++-++--+++---+-/ | | | | | | | || | ||||||| || ||
|
||||
| | || |||||| || ||||||| | | | \+++++++---+---++-++---+++--+--+++-+++------++++-++--+++---+----+-+-+--+--+------+-+-++---+-+++++++-++----+/
|
||||
| | || |||||| || ||||||| | | | ||||||| | || || ||| | ||| ||| |||| || ||| | | | | | | | | || | ||||||| || |
|
||||
| | || |||||| || ||||||| | | | ||||||| | || || ||| | ||| ||| /----++++-++--+++---+----+-+-+--+--+------+-+-++--\| ||||||| || |
|
||||
| | || |||||| || ||||||| | | | |||\+++---+---++-++---+++--+--+++-/|| | |||| || ||| | | | | | | | | || || ||||||| || |
|
||||
| | || |||||| || ||||||| | | | ||| ||| | |\-++---+++--+--+++--++-+----++++-++--+++---+----+-+-+--+--+------+-+-+/ || ||||||| || |
|
||||
| | || |||||| || ||||||| | | | ||| ||| | | || ||| | ||| || | |||| || ||| /+----+-+-+--+--+------+-+-+--\|| ||||||| || |
|
||||
| | || |||||| || ||||||| | | | ||| ||| | \--++---+++--+--+++--++-+----++++-++--/|| || | | | | | /---+-+-+--+++-+++++++-++\ |
|
||||
| | \+-++++++-++-----+++++++--+----+--+--+++-+++---/ || ||| |/-+++--++-+----++++-++---++-\|| | | | | | | | | \--+++-+++/||| ||| |
|
||||
| | | |||||| || ||||||| | | | ||| ||| || ||| || ||| || | v||| || || ||| /+-+-+--+--+--+---+-+\ ||| ||| ||| ||| |
|
||||
| | | |||||| || ||||||| | | \--+++-+++----------++---+++--++-+++--++-+----++++-++---++-+++---++-+-/ | | | | || ||| ||| ||| ||| |
|
||||
| \----+-++++++-++-----/|\++++--+----+-----+++-+++----------++---+/| || ||| || | ||||/++---++-+++---++-+---\| | | | || ||| ||| ||| ||| |
|
||||
| | |||||| \+------+-++++--+----/ ||| ||| || | | || ||| || | ||||||| || ||| || | || | | | || ||| ||| ||| ||| |
|
||||
| | |||||| | | |||| | ||| ||| || | | || ||| || | ||||||| || ||| || | || | | | || ||| ||| ||| ||| |
|
||||
| | |||||| | /-+-++++--+------\ ||| ||v || | | || ||| || | ||||||| |\-+++---++-+---++--+--+---+-++---+++-+++-++/ ||| |
|
||||
| | |||||| | | | |||| | | ||| ||| || | | || ||| || | ||\++++---+--+++---++-/ || | | | || ||| ||| || ||| |
|
||||
| | |||||| | | | |||| | | ||| ||| || | | || ||| \+-+----++-++++---+--+++---++-----++--+--+---+-++---+++-+++-++--+++---/
|
||||
| \-++++++--+----+-+-++++--+------+---+++-+++----------++---+-+--++-+++---/ | || |||| | ||| || || | | | || ||| ||| || |||
|
||||
| |||||| | | | |||| | | ||\-+++----------++---+-+--++-+++-----+----++-++++---+--+++---++-----++--+--+---/ \+---+++-+++-++--/||
|
||||
| /--++++++--+----+-+-++++--+------+---++--+++\ |\---+-+--++-/|| | || |||| | ||| \+-----++--+--+------/ ||| ||| || ||
|
||||
| | |||||| | | | |||| | | || |||| | | | || || | || |||| | ||| | || | | ||| ||| || ||
|
||||
| | \+++++--+----+-+-++++--+------+---++--++++---------+----+-+--++--++-----+----/| |||| | ||| \-----++--+--+----------+++-+++-/| ||
|
||||
| |/--+++++--+----+-+-++++--+------+---++-\\+++---------+----+-+--++--++-----+-----+-++++---+--+++----------++--/ | ||| ||| | ||
|
||||
| || ||||| | | | |||| \------+---++-+-+++---------+----+-+--++--++-----+-----+-++++---+--++/ || | ||| ||| | ||
|
||||
| || ||||| | | | |||| | || | ||| | | | || || | | |||| | || || | ||| ||| | ||
|
||||
| || ||||| | | | |||| | || | ||| | | | || || | | |||| | ||/----------++-----+------\ ||| ||| | ||
|
||||
| || ||||| | | | |||| | || | ||| | | \--++--++-----+-----+-++/| | ||| || | | ||| ||| | ||
|
||||
|/----++--+++++--+----+-+-++++---------+---++-+-+++---------+----+----++--++-----+\ | \+-+---+--+++----------++-----+------+---+++-/|| | ||
|
||||
|| || ||||| | \-+-++++---------/ || | ||| | | || || || | | | | ||| || | | ||| || | ||
|
||||
|| || ||||| | | |||| || | ||| | | || || || | | | | ||| || \------+---+++--++--+---+/
|
||||
|| || ||||| | | ||\+-------------/| | ||| | | || || /---++----+--+-+---+--+++---\ || | ||| || | |
|
||||
|| |\--+++++--+------+-++-+--------------+-/ ||| | | || || | || | | | | ||| | || | ||| || | |
|
||||
|| | ||||| | | || | /-----------+\ |\+---------+----+----++--++-+---++----+--+-+---+--+++---+------++------------+---+++--++--+---/
|
||||
|| | |\+++--+------+-+/ | | /-------++--+-+--\ | | || || | || | | | | ||| | || | ||| || |
|
||||
|| | /+-+++--+------+-+--+--+---+-------++--+-+--+------+----+----++--++-+---++----+--+-+---+--+++\ | || | ||| || |
|
||||
|| | || ||| | | | | | | || | | | | | || || | || | | | | ||\+--+------++------------/ ||| |^ |
|
||||
|| | || ||| | | | \--+---+-------++--+-+--+------+----/ || || | || | | | | || | | || ||| || |
|
||||
|| | || ||| | | | | | || | | | | || || | || | | | | || | | || ||| || |
|
||||
|| \--++-+++--+------+-+-----+---+-------++--+-/ | | || || | || \--+-+---+--++-+--+------++----------------++/ || |
|
||||
|| || ||| | \-+-----+---+-------++--/ | | || || | || | | | || | | |\----------------++---++->/
|
||||
|| || ||\--+--------+-----+---+-------++-------+------+-<-------/| || | || | \---+--++-+--+------+-----------------++---+/
|
||||
|| |\-++---+--------+-----+---+-------++-------+------+----------+--+/ | || | | || | | | || |
|
||||
\+-------+--++>--+--------+-----+---+-------++-------+------/ | | \---++-------+-----+--++-+--/ | || |
|
||||
| | || \--------+-----+---+-------++-------+-----------------+--+------++-------+-----/ || | | || |
|
||||
| | \+------------+-----+---+-------/| | | \------++-------+--------++-+---------+-----------------++---/
|
||||
| | \------------/ \---+--------/ | | \+-------+--------++-+---------+-----------------+/
|
||||
| | | | \----------+-------+--------/| | | |
|
||||
\-------+--------------------------+----------------+----------------------------/ | \-+---------+-----------------/
|
||||
\--------------------------+----------------+------------------------------------+-----------/ |
|
||||
\----------------/ \---------------------/
|
7
2018/day13_mine_cart_madness/tests/sample_input
Normal file
7
2018/day13_mine_cart_madness/tests/sample_input
Normal file
|
@ -0,0 +1,7 @@
|
|||
/>-<\
|
||||
| |
|
||||
| /<+-\
|
||||
| | | v
|
||||
\>+</ |
|
||||
| ^
|
||||
\<->/
|
Loading…
Add table
Add a link
Reference in a new issue