Add 2024 Day 20
This commit is contained in:
parent
81b7ed1f0d
commit
e3813c6589
5 changed files with 537 additions and 0 deletions
13
2024/day20_race_condition/Cargo.toml
Normal file
13
2024/day20_race_condition/Cargo.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
[package]
|
||||||
|
name = "day20_race_condition"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
|
||||||
|
[dev-dependencies]
|
||||||
|
# criterion = "0.5.1"
|
||||||
|
|
||||||
|
[[bench]]
|
||||||
|
name = "test_benchmark"
|
||||||
|
harness = false
|
214
2024/day20_race_condition/challenge.md
Normal file
214
2024/day20_race_condition/challenge.md
Normal file
|
@ -0,0 +1,214 @@
|
||||||
|
The Historians are quite pixelated again. This time, a massive, black building looms over you - you're [right outside](/2017/day/24) the CPU!
|
||||||
|
|
||||||
|
While The Historians get to work, a nearby program sees that you're idle and challenges you to a *race*. Apparently, you've arrived just in time for the frequently-held *race condition* festival!
|
||||||
|
|
||||||
|
The race takes place on a particularly long and twisting code path; programs compete to see who can finish in the *fewest picoseconds*. The winner even gets their very own [mutex](https://en.wikipedia.org/wiki/Lock_(computer_science))!
|
||||||
|
|
||||||
|
They hand you a *map of the racetrack* (your puzzle input). For example:
|
||||||
|
|
||||||
|
```
|
||||||
|
###############
|
||||||
|
#...#...#.....#
|
||||||
|
#.#.#.#.#.###.#
|
||||||
|
#S#...#.#.#...#
|
||||||
|
#######.#.#.###
|
||||||
|
#######.#.#...#
|
||||||
|
#######.#.###.#
|
||||||
|
###..E#...#...#
|
||||||
|
###.#######.###
|
||||||
|
#...###...#...#
|
||||||
|
#.#####.#.###.#
|
||||||
|
#.#...#.#.#...#
|
||||||
|
#.#.#.#.#.#.###
|
||||||
|
#...#...#...###
|
||||||
|
###############
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
The map consists of track (`.`) - including the *start* (`S`) and *end* (`E`) positions (both of which also count as track) - and *walls* (`#`).
|
||||||
|
|
||||||
|
When a program runs through the racetrack, it starts at the start position. Then, it is allowed to move up, down, left, or right; each such move takes *1 picosecond*. The goal is to reach the end position as quickly as possible. In this example racetrack, the fastest time is `84` picoseconds.
|
||||||
|
|
||||||
|
Because there is only a single path from the start to the end and the programs all go the same speed, the races used to be pretty boring. To make things more interesting, they introduced a new rule to the races: programs are allowed to *cheat*.
|
||||||
|
|
||||||
|
The rules for cheating are very strict. *Exactly once* during a race, a program may *disable collision* for up to *2 picoseconds*. This allows the program to *pass through walls* as if they were regular track. At the end of the cheat, the program must be back on normal track again; otherwise, it will receive a [segmentation fault](https://en.wikipedia.org/wiki/Segmentation_fault) and get disqualified.
|
||||||
|
|
||||||
|
So, a program could complete the course in 72 picoseconds (saving *12 picoseconds*) by cheating for the two moves marked `1` and `2`:
|
||||||
|
|
||||||
|
```
|
||||||
|
###############
|
||||||
|
#...#...12....#
|
||||||
|
#.#.#.#.#.###.#
|
||||||
|
#S#...#.#.#...#
|
||||||
|
#######.#.#.###
|
||||||
|
#######.#.#...#
|
||||||
|
#######.#.###.#
|
||||||
|
###..E#...#...#
|
||||||
|
###.#######.###
|
||||||
|
#...###...#...#
|
||||||
|
#.#####.#.###.#
|
||||||
|
#.#...#.#.#...#
|
||||||
|
#.#.#.#.#.#.###
|
||||||
|
#...#...#...###
|
||||||
|
###############
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
Or, a program could complete the course in 64 picoseconds (saving *20 picoseconds*) by cheating for the two moves marked `1` and `2`:
|
||||||
|
|
||||||
|
```
|
||||||
|
###############
|
||||||
|
#...#...#.....#
|
||||||
|
#.#.#.#.#.###.#
|
||||||
|
#S#...#.#.#...#
|
||||||
|
#######.#.#.###
|
||||||
|
#######.#.#...#
|
||||||
|
#######.#.###.#
|
||||||
|
###..E#...12..#
|
||||||
|
###.#######.###
|
||||||
|
#...###...#...#
|
||||||
|
#.#####.#.###.#
|
||||||
|
#.#...#.#.#...#
|
||||||
|
#.#.#.#.#.#.###
|
||||||
|
#...#...#...###
|
||||||
|
###############
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
This cheat saves *38 picoseconds*:
|
||||||
|
|
||||||
|
```
|
||||||
|
###############
|
||||||
|
#...#...#.....#
|
||||||
|
#.#.#.#.#.###.#
|
||||||
|
#S#...#.#.#...#
|
||||||
|
#######.#.#.###
|
||||||
|
#######.#.#...#
|
||||||
|
#######.#.###.#
|
||||||
|
###..E#...#...#
|
||||||
|
###.####1##.###
|
||||||
|
#...###.2.#...#
|
||||||
|
#.#####.#.###.#
|
||||||
|
#.#...#.#.#...#
|
||||||
|
#.#.#.#.#.#.###
|
||||||
|
#...#...#...###
|
||||||
|
###############
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
This cheat saves *64 picoseconds* and takes the program directly to the end:
|
||||||
|
|
||||||
|
```
|
||||||
|
###############
|
||||||
|
#...#...#.....#
|
||||||
|
#.#.#.#.#.###.#
|
||||||
|
#S#...#.#.#...#
|
||||||
|
#######.#.#.###
|
||||||
|
#######.#.#...#
|
||||||
|
#######.#.###.#
|
||||||
|
###..21...#...#
|
||||||
|
###.#######.###
|
||||||
|
#...###...#...#
|
||||||
|
#.#####.#.###.#
|
||||||
|
#.#...#.#.#...#
|
||||||
|
#.#.#.#.#.#.###
|
||||||
|
#...#...#...###
|
||||||
|
###############
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
Each cheat has a distinct *start position* (the position where the cheat is activated, just before the first move that is allowed to go through walls) and *end position*; cheats are uniquely identified by their start position and end position.
|
||||||
|
|
||||||
|
In this example, the total number of cheats (grouped by the amount of time they save) are as follows:
|
||||||
|
|
||||||
|
* There are 14 cheats that save 2 picoseconds.
|
||||||
|
* There are 14 cheats that save 4 picoseconds.
|
||||||
|
* There are 2 cheats that save 6 picoseconds.
|
||||||
|
* There are 4 cheats that save 8 picoseconds.
|
||||||
|
* There are 2 cheats that save 10 picoseconds.
|
||||||
|
* There are 3 cheats that save 12 picoseconds.
|
||||||
|
* There is one cheat that saves 20 picoseconds.
|
||||||
|
* There is one cheat that saves 36 picoseconds.
|
||||||
|
* There is one cheat that saves 38 picoseconds.
|
||||||
|
* There is one cheat that saves 40 picoseconds.
|
||||||
|
* There is one cheat that saves 64 picoseconds.
|
||||||
|
|
||||||
|
You aren't sure what the conditions of the racetrack will be like, so to give yourself as many options as possible, you'll need a list of the best cheats. *How many cheats would save you at least 100 picoseconds?*
|
||||||
|
|
||||||
|
Your puzzle answer was `1343`.
|
||||||
|
|
||||||
|
\--- Part Two ---
|
||||||
|
----------
|
||||||
|
|
||||||
|
The programs seem perplexed by your list of cheats. Apparently, the two-picosecond cheating rule was deprecated several milliseconds ago! The latest version of the cheating rule permits a single cheat that instead lasts at most *20 picoseconds*.
|
||||||
|
|
||||||
|
Now, in addition to all the cheats that were possible in just two picoseconds, many more cheats are possible. This six-picosecond cheat saves *76 picoseconds*:
|
||||||
|
|
||||||
|
```
|
||||||
|
###############
|
||||||
|
#...#...#.....#
|
||||||
|
#.#.#.#.#.###.#
|
||||||
|
#S#...#.#.#...#
|
||||||
|
#1#####.#.#.###
|
||||||
|
#2#####.#.#...#
|
||||||
|
#3#####.#.###.#
|
||||||
|
#456.E#...#...#
|
||||||
|
###.#######.###
|
||||||
|
#...###...#...#
|
||||||
|
#.#####.#.###.#
|
||||||
|
#.#...#.#.#...#
|
||||||
|
#.#.#.#.#.#.###
|
||||||
|
#...#...#...###
|
||||||
|
###############
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
Because this cheat has the same start and end positions as the one above, it's the *same cheat*, even though the path taken during the cheat is different:
|
||||||
|
|
||||||
|
```
|
||||||
|
###############
|
||||||
|
#...#...#.....#
|
||||||
|
#.#.#.#.#.###.#
|
||||||
|
#S12..#.#.#...#
|
||||||
|
###3###.#.#.###
|
||||||
|
###4###.#.#...#
|
||||||
|
###5###.#.###.#
|
||||||
|
###6.E#...#...#
|
||||||
|
###.#######.###
|
||||||
|
#...###...#...#
|
||||||
|
#.#####.#.###.#
|
||||||
|
#.#...#.#.#...#
|
||||||
|
#.#.#.#.#.#.###
|
||||||
|
#...#...#...###
|
||||||
|
###############
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
Cheats don't need to use all 20 picoseconds; cheats can last any amount of time up to and including 20 picoseconds (but can still only end when the program is on normal track). Any cheat time not used is lost; it can't be saved for another cheat later.
|
||||||
|
|
||||||
|
You'll still need a list of the best cheats, but now there are even more to choose between. Here are the quantities of cheats in this example that save *50 picoseconds or more*:
|
||||||
|
|
||||||
|
* There are 32 cheats that save 50 picoseconds.
|
||||||
|
* There are 31 cheats that save 52 picoseconds.
|
||||||
|
* There are 29 cheats that save 54 picoseconds.
|
||||||
|
* There are 39 cheats that save 56 picoseconds.
|
||||||
|
* There are 25 cheats that save 58 picoseconds.
|
||||||
|
* There are 23 cheats that save 60 picoseconds.
|
||||||
|
* There are 20 cheats that save 62 picoseconds.
|
||||||
|
* There are 19 cheats that save 64 picoseconds.
|
||||||
|
* There are 12 cheats that save 66 picoseconds.
|
||||||
|
* There are 14 cheats that save 68 picoseconds.
|
||||||
|
* There are 12 cheats that save 70 picoseconds.
|
||||||
|
* There are 22 cheats that save 72 picoseconds.
|
||||||
|
* There are 4 cheats that save 74 picoseconds.
|
||||||
|
* There are 3 cheats that save 76 picoseconds.
|
||||||
|
|
||||||
|
Find the best cheats using the updated cheating rules. *How many cheats would save you at least 100 picoseconds?*
|
||||||
|
|
||||||
|
Your puzzle answer was `982891`.
|
||||||
|
|
||||||
|
Both parts of this puzzle are complete! They provide two gold stars: \*\*
|
||||||
|
|
||||||
|
At this point, you should [return to your Advent calendar](/2024) and try another puzzle.
|
||||||
|
|
||||||
|
If you still want to see it, you can [get your puzzle input](20/input).
|
154
2024/day20_race_condition/src/lib.rs
Normal file
154
2024/day20_race_condition/src/lib.rs
Normal file
|
@ -0,0 +1,154 @@
|
||||||
|
use core::fmt::Display;
|
||||||
|
use std::collections::{HashMap, HashSet, VecDeque};
|
||||||
|
|
||||||
|
#[derive(Debug, PartialEq, Eq)]
|
||||||
|
pub enum ParseError {
|
||||||
|
InvalidTile(char),
|
||||||
|
NoDest,
|
||||||
|
NoStart,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Display for ParseError {
|
||||||
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
|
match self {
|
||||||
|
Self::InvalidTile(e) => write!(f, "Unable to convert {e} into a map tile. Only '.', '#', 'E', and 'S' are allowed"),
|
||||||
|
Self::NoDest => write!(f, "No end position ('E') found in input"),
|
||||||
|
Self::NoStart => write!(f, "No starting position ('S') found in input"),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type Coordinates = (isize, isize);
|
||||||
|
|
||||||
|
struct Map {
|
||||||
|
walkable: HashSet<Coordinates>,
|
||||||
|
start: Coordinates,
|
||||||
|
dest: Coordinates,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl TryFrom<&str> for Map {
|
||||||
|
type Error = ParseError;
|
||||||
|
|
||||||
|
fn try_from(value: &str) -> Result<Self, Self::Error> {
|
||||||
|
let mut start = None;
|
||||||
|
let mut dest = None;
|
||||||
|
let mut walkable = HashSet::new();
|
||||||
|
|
||||||
|
for (y, line) in value.lines().enumerate() {
|
||||||
|
for (x, c) in line.chars().enumerate() {
|
||||||
|
let coords = (x as isize, y as isize);
|
||||||
|
match c {
|
||||||
|
'#' => (),
|
||||||
|
'.' => _ = walkable.insert(coords),
|
||||||
|
'S' => start = Some(coords), // walkable, but why would we ever want to return?
|
||||||
|
'E' => {
|
||||||
|
dest = Some(coords);
|
||||||
|
walkable.insert(coords);
|
||||||
|
},
|
||||||
|
e => return Err(Self::Error::InvalidTile(e)),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(start) = start {
|
||||||
|
if let Some(dest) = dest {
|
||||||
|
Ok(Self {
|
||||||
|
walkable,
|
||||||
|
start,
|
||||||
|
dest,
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
Err(Self::Error::NoDest)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
Err(Self::Error::NoStart)
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Map {
|
||||||
|
/// Returns the number of cheats of length `cheat_len` or shorter that result in at least `threshold` fewer steps.
|
||||||
|
fn cheats(&self, cheat_len: isize, threshold: usize) -> usize {
|
||||||
|
let mut cheats = 0;
|
||||||
|
let dists_without_cheating = self.dists();
|
||||||
|
dists_without_cheating.iter().map(|(&pos, &dist)| (pos, dist)).for_each(|((x, y), dist)| {
|
||||||
|
(0..=cheat_len).for_each(|dx| {
|
||||||
|
(0..=cheat_len-dx).for_each(|dy| {
|
||||||
|
[(x-dx, y-dy), (x+dx, y-dy), (x-dx, y+dy), (x+dx, y+dy)]
|
||||||
|
.iter()
|
||||||
|
.enumerate()
|
||||||
|
.filter(|&(idx, _pos)| (dx > 0 || idx & 1 == 0) && (dy > 0 || idx < 2))
|
||||||
|
.for_each(|(_idx, pos)| {
|
||||||
|
if let Some(old_dist) = dists_without_cheating.get(pos) {
|
||||||
|
if *old_dist >= dist + (dx + dy) as usize + threshold {
|
||||||
|
cheats += 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
})
|
||||||
|
});
|
||||||
|
cheats
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Calculates the distances needed to reach each position from the start without cheats. This
|
||||||
|
/// doesn't rely on the fact that there is only one way through the maze.
|
||||||
|
fn dists(&self) -> HashMap<Coordinates, usize> {
|
||||||
|
let mut dists = HashMap::from([(self.start, 0)]);
|
||||||
|
let mut open_set = VecDeque::from([(self.start, 0)]);
|
||||||
|
while let Some(((x, y), dist)) = open_set.pop_front() {
|
||||||
|
dists.insert((x, y), dist);
|
||||||
|
if (x, y) == self.dest {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
[(x-1, y), (x+1, y), (x, y-1), (x, y+1)]
|
||||||
|
.into_iter()
|
||||||
|
.filter(|pos| self.walkable.contains(pos))
|
||||||
|
.for_each(|pos| {
|
||||||
|
if !dists.contains_key(&pos) {
|
||||||
|
open_set.push_back((pos, dist+1));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
dists
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Generalized run function to accomodate the different thresholds for the samle input
|
||||||
|
fn run_challenge(input: &str, thresholds: (usize, usize)) -> Result<(usize, usize), ParseError> {
|
||||||
|
let map = Map::try_from(input)?;
|
||||||
|
let first = map.cheats(2, thresholds.0);
|
||||||
|
let second = map.cheats(20, thresholds.1);
|
||||||
|
Ok((first, second))
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn run_sample(input: &str) -> Result<(usize, usize), ParseError> {
|
||||||
|
run_challenge(input, (1, 50))
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn run(input: &str) -> Result<(usize, usize), ParseError> {
|
||||||
|
run_challenge(input, (100, 100))
|
||||||
|
}
|
||||||
|
#[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}")[..]).trim().to_string()
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_sample() {
|
||||||
|
let sample_input = read_file("tests/sample_input");
|
||||||
|
assert_eq!(run_sample(&sample_input), Ok((44, 285)));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_challenge() {
|
||||||
|
let challenge_input = read_file("tests/challenge_input");
|
||||||
|
assert_eq!(run(&challenge_input), Ok((1343, 982891)));
|
||||||
|
}
|
||||||
|
}
|
141
2024/day20_race_condition/tests/challenge_input
Normal file
141
2024/day20_race_condition/tests/challenge_input
Normal file
|
@ -0,0 +1,141 @@
|
||||||
|
#############################################################################################################################################
|
||||||
|
#...#...#...........#...#...#...#...#.....#...###...#...###.........#...#...#.......#...#...#...#...#...#...###...#...###...#...###.........#
|
||||||
|
#.#.#.#.#.#########.#.#.#.#.#.#.#.#.#.###.#.#.###.#.#.#.###.#######.#.#.#.#.#.#####.#.#.#.#.#.#.#.#.#.#.#.#.###.#.#.#.###.#.#.#.###.#######.#
|
||||||
|
#.#...#.#...#.....#...#...#...#.#.#.#...#...#...#.#...#...#.......#...#...#.#.....#.#.#...#.#.#.#.#.#.#...#.#...#.#.#.....#.#.#.#...#...#...#
|
||||||
|
#.#####.###.#.###.#############.#.#.###.#######.#.#######.#######.#########.#####.#.#.#####.#.#.#.#.#.#####.#.###.#.#######.#.#.#.###.#.#.###
|
||||||
|
#.#.....###...###.......#.......#.#.....#.......#.......#...#.....#...#.....#...#.#.#.....#...#.#.#.#.#.....#.#...#.#.......#.#.#.#...#...###
|
||||||
|
#.#.###################.#.#######.#######.#############.###.#.#####.#.#.#####.#.#.#.#####.#####.#.#.#.#.#####.#.###.#.#######.#.#.#.#########
|
||||||
|
#.#.#...###...#...#.....#.......#.......#.###...#...###...#.#...#...#...###...#.#.#...###.....#...#...#.....#.#.###.#.#...#...#...#.........#
|
||||||
|
#.#.#.#.###.#.#.#.#.###########.#######.#.###.#.#.#.#####.#.###.#.#########.###.#.###.#######.#############.#.#.###.#.#.#.#.###############.#
|
||||||
|
#.#.#.#.#...#.#.#.#.....#.......###...#.#.#...#.#.#.#.....#.###.#.#...#...#...#.#.#...#...#...#.........#...#.#.....#.#.#.#...#.............#
|
||||||
|
#.#.#.#.#.###.#.#.#####.#.#########.#.#.#.#.###.#.#.#.#####.###.#.#.#.#.#.###.#.#.#.###.#.#.###.#######.#.###.#######.#.#.###.#.#############
|
||||||
|
#.#.#.#.#...#.#.#.#.....#...#...#...#...#.#...#.#.#...#...#.....#.#.#...#.....#.#.#.#...#...#...###...#...###.#.......#.#...#.#.......#.....#
|
||||||
|
#.#.#.#.###.#.#.#.#.#######.#.#.#.#######.###.#.#.#####.#.#######.#.###########.#.#.#.#######.#####.#.#######.#.#######.###.#.#######.#.###.#
|
||||||
|
#.#...#.....#...#.#...#.....#.#.#...#.....#...#.#.......#...#...#...#...........#.#.#...#.....#...#.#...#...#.#.###...#...#.#.#.......#.#...#
|
||||||
|
#.###############.###.#.#####.#.###.#.#####.###.###########.#.#.#####.###########.#.###.#.#####.#.#.###.#.#.#.#.###.#.###.#.#.#.#######.#.###
|
||||||
|
#...#...#...#...#...#.#.###...#...#.#...#...#...#...###...#...#...#...#.....#...#.#.#...#...###.#.#.#...#.#.#.#.#...#.....#.#.#.......#.#...#
|
||||||
|
###.#.#.#.#.#.#.###.#.#.###.#####.#.###.#.###.###.#.###.#.#######.#.###.###.#.#.#.#.#.#####.###.#.#.#.###.#.#.#.#.#########.#.#######.#.###.#
|
||||||
|
###...#...#...#...#...#...#...#...#.#...#...#...#.#...#.#.......#.#...#...#...#...#.#.....#...#.#...#...#.#...#.#...#.....#.#.#.......#.#...#
|
||||||
|
#################.#######.###.#.###.#.#####.###.#.###.#.#######.#.###.###.#########.#####.###.#.#######.#.#####.###.#.###.#.#.#.#######.#.###
|
||||||
|
#.......###...###...#...#.....#.....#...###.#...#.#...#.......#.#...#.#...#...#.....#.....#...#.#.......#.#...#.....#...#...#.#...#...#.#...#
|
||||||
|
#.#####.###.#.#####.#.#.###############.###.#.###.#.#########.#.###.#.#.###.#.#.#####.#####.###.#.#######.#.#.#########.#####.###.#.#.#.###.#
|
||||||
|
#.#.....#...#.#...#...#...#.........#...#...#...#.#.#...#...#.#.#...#...#...#.#.#...#.....#.....#.......#...#.....#.....#.....#...#.#.#.#...#
|
||||||
|
#.#.#####.###.#.#.#######.#.#######.#.###.#####.#.#.#.#.#.#.#.#.#.#######.###.#.#.#.#####.#############.#########.#.#####.#####.###.#.#.#.###
|
||||||
|
#.#.#...#...#.#.#.#...#...#.###...#.#.#...#.....#.#.#.#.#.#...#.#.#.......###...#.#.#.....#.............#...#.....#.#.....#...#...#.#...#...#
|
||||||
|
#.#.#.#.###.#.#.#.#.#.#.###.###.#.#.#.#.###.#####.#.#.#.#.#####.#.#.#############.#.#.#####.#############.#.#.#####.#.#####.#.###.#.#######.#
|
||||||
|
#.#...#...#.#.#.#.#.#.#.....#...#.#.#...#...#...#.#...#.#.....#.#.#.......###...#.#.#.....#.......###...#.#.#.....#...#...#.#.#...#.#...#...#
|
||||||
|
#.#######.#.#.#.#.#.#.#######.###.#.#####.###.#.#.#####.#####.#.#.#######.###.#.#.#.#####.#######.###.#.#.#.#####.#####.#.#.#.#.###.#.#.#.###
|
||||||
|
#.......#...#...#.#.#.#...###...#.#.....#...#.#...#.....#.....#.#.#.......#...#...#.#.....#.......#...#.#.#.#...#.#.....#...#...###.#.#...###
|
||||||
|
#######.#########.#.#.#.#.#####.#.#####.###.#.#####.#####.#####.#.#.#######.#######.#.#####.#######.###.#.#.#.#.#.#.###############.#.#######
|
||||||
|
###...#.........#.#.#.#.#.#...#.#.#...#.#...#...#...###...#...#.#.#...#...#.....#...#.....#.........#...#.#.#.#.#.#.......#...#.....#.......#
|
||||||
|
###.#.#########.#.#.#.#.#.#.#.#.#.#.#.#.#.#####.#.#####.###.#.#.#.###.#.#.#####.#.#######.###########.###.#.#.#.#.#######.#.#.#.###########.#
|
||||||
|
#...#.....#...#.#.#.#...#...#.#.#.#.#.#.#.#.....#.....#.....#.#.#.#...#.#...#...#.#.....#.#...........#...#.#.#.#.#.......#.#...#...#...#...#
|
||||||
|
#.#######.#.#.#.#.#.#########.#.#.#.#.#.#.#.#########.#######.#.#.#.###.###.#.###.#.###.#.#.###########.###.#.#.#.#.#######.#####.#.#.#.#.###
|
||||||
|
#.....#...#.#...#.#.......#...#.#.#.#.#.#.#...#.......#...###.#.#.#.###.#...#...#.#...#.#.#.#...#...###.#...#.#.#.#.....###.#.....#...#...###
|
||||||
|
#####.#.###.#####.#######.#.###.#.#.#.#.#.###.#.#######.#.###.#.#.#.###.#.#####.#.###.#.#.#.#.#.#.#.###.#.###.#.#.#####.###.#.###############
|
||||||
|
#.....#...#.....#.#.......#.....#.#.#...#...#.#.#.....#.#.#...#.#.#.#...#...#...#...#.#.#.#.#.#.#.#.#...#...#.#...#.....#...#.......#.......#
|
||||||
|
#.#######.#####.#.#.#############.#.#######.#.#.#.###.#.#.#.###.#.#.#.#####.#.#####.#.#.#.#.#.#.#.#.#.#####.#.#####.#####.#########.#.#####.#
|
||||||
|
#...#...#.......#.#.....#.......#.#.....#...#.#.#.#...#.#.#.###.#.#.#...###.#...#...#.#...#.#.#.#.#.#.#.....#.#...#.......#.........#.#.....#
|
||||||
|
###.#.#.#########.#####.#.#####.#.#####.#.###.#.#.#.###.#.#.###.#.#.###.###.###.#.###.#####.#.#.#.#.#.#.#####.#.#.#########.#########.#.#####
|
||||||
|
#...#.#...#.....#.#...#...#...#.#.......#...#.#.#.#.#...#.#...#.#.#...#.#...#...#...#.....#...#.#.#...#...###.#.#...........#...#...#.#.#...#
|
||||||
|
#.###.###.#.###.#.#.#.#####.#.#.###########.#.#.#.#.#.###.###.#.#.###.#.#.###.#####.#####.#####.#.#######.###.#.#############.#.#.#.#.#.#.#.#
|
||||||
|
#.....###...#...#...#...#...#...#.....#...#.#.#.#.#.#.###.#...#.#...#.#.#...#.....#...#...#.....#...#...#.....#.......#.......#...#...#.#.#.#
|
||||||
|
#############.#########.#.#######.###.#.#.#.#.#.#.#.#.###.#.###.###.#.#.###.#####.###.#.###.#######.#.#.#############.#.###############.#.#.#
|
||||||
|
#...#...#...#...#.....#.#.........#...#.#.#...#...#.#.#...#.###.#...#...###...#...###...###.........#.#.#.............#.#...............#.#.#
|
||||||
|
#.#.#.#.#.#.###.#.###.#.###########.###.#.#########.#.#.###.###.#.###########.#.#####################.#.#.#############.#.###############.#.#
|
||||||
|
#.#...#...#.....#.#...#.###...#...#.....#.........#.#.#...#.#...#.....#.......#.###...#...#...........#...#.............#...............#.#.#
|
||||||
|
#.###############.#.###.###.#.#.#.###############.#.#.###.#.#.#######.#.#######.###.#.#.#.#.###############.###########################.#.#.#
|
||||||
|
#...#...#...#.....#...#.....#...#.........#...#...#...#...#.#.#...#...#...#...#...#.#...#.#.#.........#.....#.........................#...#.#
|
||||||
|
###.#.#.#.#.#.#######.###################.#.#.#.#######.###.#.#.#.#.#####.#.#.###.#.#####.#.#.#######.#.#####.#######################.#####.#
|
||||||
|
###...#...#.#.###...#...#.....#.....#...#.#.#.#...#.....#...#.#.#.#.#.....#.#...#...#...#.#...#.......#.#.....###...........#...#...#.......#
|
||||||
|
###########.#.###.#.###.#.###.#.###.#.#.#.#.#.###.#.#####.###.#.#.#.#.#####.###.#####.#.#.#####.#######.#.#######.#########.#.#.#.#.#########
|
||||||
|
#...#.......#.#...#.....#.#...#.#...#.#.#...#.....#...#...###...#.#.#.....#.#...#...#.#.#.....#.....#...#.........#...#...#...#...#...#...###
|
||||||
|
#.#.#.#######.#.#########.#.###.#.###.#.#############.#.#########.#.#####.#.#.###.#.#.#.#####.#####.#.#############.#.#.#.###########.#.#.###
|
||||||
|
#.#.#.........#...#...#...#.....#.....#.............#.#.....#.....#.#.....#.#.#...#.#.#.#.....###...#.#.......#...#.#...#.....#.....#...#...#
|
||||||
|
#.#.#############.#.#.#.###########################.#.#####.#.#####.#.#####.#.#.###.#.#.#.#######.###.#.#####.#.#.#.#########.#.###.#######.#
|
||||||
|
#.#.#...#...#...#...#...#...........................#...#...#...#...#.#...#.#.#...#.#.#...#.....#.....#.....#...#.#.........#.#...#.#.....#.#
|
||||||
|
#.#.#.#.#.#.#.#.#########.#############################.#.#####.#.###.#.#.#.#.###.#.#.#####.###.###########.#####.#########.#.###.#.#.###.#.#
|
||||||
|
#.#.#.#.#.#.#.#...#.......#...#.......................#...#.....#...#.#.#.#.#.#...#...#...#...#.#...#...#...###...#.....#...#.....#...###.#.#
|
||||||
|
#.#.#.#.#.#.#.###.#.#######.#.#.#####################.#####.#######.#.#.#.#.#.#.#######.#.###.#.#.#.#.#.#.#####.###.###.#.###############.#.#
|
||||||
|
#.#.#.#.#.#.#...#.#.........#...#.....................#...#...#.....#...#...#.#.....#...#.#...#.#.#...#...#...#.....###.#.......###.....#.#.#
|
||||||
|
#.#.#.#.#.#.###.#.###############.#####################.#.###.#.#############.#####.#.###.#.###.#.#########.#.#########.#######.###.###.#.#.#
|
||||||
|
#.#.#.#.#.#.###.#.#...#...###...#...............###...#.#...#...###...........#.....#...#.#...#...#...#.....#.........#.#.....#.....#...#.#.#
|
||||||
|
#.#.#.#.#.#.###.#.#.#.#.#.###.#.###############.###.#.#.###.#######.###########.#######.#.###.#####.#.#.#############.#.#.###.#######.###.#.#
|
||||||
|
#.#.#.#.#.#.#...#...#...#.....#.......#.......#...#.#.#...#.......#.#...#.....#.###.....#.....#.....#.#.#.............#...###.#...#...###...#
|
||||||
|
#.#.#.#.#.#.#.#######################.#.#####.###.#.#.###.#######.#.#.#.#.###.#.###.###########.#####.#.#.###################.#.#.#.#########
|
||||||
|
#.#...#...#.#.............#.....#...#...#...#...#...#.....#.......#...#...#...#...#...#.........#...#...#.........###...#...#...#.#.........#
|
||||||
|
#.#########.#############.#.###.#.#.#####.#.###.###########.###############.#####.###.#.#########.#.#############.###.#.#.#.#####.#########.#
|
||||||
|
#.......#...#...#.........#.###...#.#.....#...#...........#.......#.......#...#...###.#.#...#...#.#...###...#...#.....#...#...#...#.......#.#
|
||||||
|
#######.#.###.#.#.#########.#######.#.#######.###########.#######.#.#####.###.#.#####.#.#.#.#.#.#.###.###.#.#.#.#############.#.###.#####.#.#
|
||||||
|
#.......#...#.#.#.......#...#.......#.#.......###...#...#...#.....#.....#.#...#...#...#.#.#...#.#.#...#...#...#...#...#.......#...#.....#...#
|
||||||
|
#.#########.#.#.#######.#.###.#######.#.#########.#.#.#.###.#.#########.#.#.#####.#.###.#.#####.#.#.###.#########.#.#.#.#########.#####.#####
|
||||||
|
#.......#...#.#.#.....#.#.###.........#.......#...#.#.#.###...#...#.....#.#.....#.#...#.#.....#...#.###...#...###.#.#...#.......#.......#...#
|
||||||
|
#######.#.###.#.#.###.#.#.###################.#.###.#.#.#######.#.#.#####.#####.#.###.#.#####.#####.#####.#.#.###.#.#####.#####.#########.#.#
|
||||||
|
###.....#.....#...#...#...#...#...#...........#.#...#.#...#...#.#.#.#.....#.....#.###...###...#...#.....#...#...#...#...#.....#.#...#...#.#.#
|
||||||
|
###.###############.#######.#.#.#.#.###########.#.###.###.#.#.#.#.#.#.#####.#####.#########.###.#.#####.#######.#####.#.#####.#.#.#.#.#.#.#.#
|
||||||
|
#...#...#...#....S#.....###.#.#.#.#.....#...###.#.#...#...#.#.#.#...#.....#.#...#.#.........#...#.#...#.........#...#.#...#...#...#...#...#.#
|
||||||
|
#.###.#.#.#.#.#########.###.#.#.#.#####.#.#.###.#.#.###.###.#.#.#########.#.#.#.#.#.#########.###.#.#.###########.#.#.###.#.###############.#
|
||||||
|
#...#.#...#...#########.....#...#.....#...#.....#...#...###.#.#.....#.....#.#.#.#.#.........#.#...#.#.............#.#...#...#...#.....#...#.#
|
||||||
|
###.#.###############################.###############.#####.#.#####.#.#####.#.#.#.#########.#.#.###.###############.###.#####.#.#.###.#.#.#.#
|
||||||
|
#...#...#############################.#...#...#.....#.....#.#.#...#.#...###...#...#.....#...#.#...#.#...............#...#.....#.#...#...#...#
|
||||||
|
#.#####.#############################.#.#.#.#.#.###.#####.#.#.#.#.#.###.###########.###.#.###.###.#.#.###############.###.#####.###.#########
|
||||||
|
#.....#.#############################...#.#.#.#.#...#.....#.#.#.#.#...#...###...###.#...#...#.#...#.#.#.............#...#.....#.....#...#...#
|
||||||
|
#####.#.#################################.#.#.#.#.###.#####.#.#.#.###.###.###.#.###.#.#####.#.#.###.#.#.###########.###.#####.#######.#.#.#.#
|
||||||
|
#.....#.#########################...#...#...#...#.....#...#.#...#.###...#.#...#...#.#.#...#...#.....#...#...#.....#.....#.....###...#.#.#.#.#
|
||||||
|
#.#####.#########################.#.#.#.###############.#.#.#####.#####.#.#.#####.#.#.#.#.###############.#.#.###.#######.#######.#.#.#.#.#.#
|
||||||
|
#...#...###############.......#...#...#.....#.....###...#...#.....#...#.#.#.#.....#.#.#.#.###.........#...#...###...#...#.........#...#...#.#
|
||||||
|
###.#.#################.#####.#.###########.#.###.###.#######.#####.#.#.#.#.#.#####.#.#.#.###.#######.#.###########.#.#.###################.#
|
||||||
|
#...#.###############...#.....#.#...........#...#...#.....#...###...#...#.#.#.#...#.#.#.#...#.......#.#.........###...#...#.....#.....#.....#
|
||||||
|
#.###.###############.###.#####.#.#############.###.#####.#.#####.#######.#.#.#.#.#.#.#.###.#######.#.#########.#########.#.###.#.###.#.#####
|
||||||
|
#.....#########...#...#...#...#.#.......#...#...#...###...#.....#...#...#...#.#.#.#.#.#...#.###.....#...........#...#.....#...#.#...#.#.....#
|
||||||
|
###############.#.#.###.###.#.#.#######.#.#.#.###.#####.#######.###.#.#.#####.#.#.#.#.###.#.###.#################.#.#.#######.#.###.#.#####.#
|
||||||
|
#...#...#######.#.#.#...#...#...#.......#.#.#...#.....#...#.....###...#.....#.#.#...#.....#...#.....#.....#...#...#.#...#...#.#.#...#...#...#
|
||||||
|
#.#.#.#.#######.#.#.#.###.#######.#######.#.###.#####.###.#.###############.#.#.#############.#####.#.###.#.#.#.###.###.#.#.#.#.#.#####.#.###
|
||||||
|
#.#...#E###.....#...#.....#...###...###...#...#.#.....#...#.#...###.........#...#.........#...#.....#.#...#.#.#...#...#...#...#...#...#...###
|
||||||
|
#.#########.###############.#.#####.###.#####.#.#.#####.###.#.#.###.#############.#######.#.###.#####.#.###.#.###.###.#############.#.#######
|
||||||
|
#.....#...#.#.............#.#.#...#.....#...#.#.#.....#...#.#.#...#.............#...#...#...###.......#.....#...#.#...#...#...#...#.#.......#
|
||||||
|
#####.#.#.#.#.###########.#.#.#.#.#######.#.#.#.#####.###.#.#.###.#############.###.#.#.#######################.#.#.###.#.#.#.#.#.#.#######.#
|
||||||
|
#...#...#...#.......#...#...#...#.........#...#...#...#...#...#...#.....#...#...#...#.#.......#.....#...#.....#...#.....#...#...#...#.......#
|
||||||
|
#.#.###############.#.#.#########################.#.###.#######.###.###.#.#.#.###.###.#######.#.###.#.#.#.###.#######################.#######
|
||||||
|
#.#...#...........#...#...#.....#...#...#...#...#.#.###.#.......#...#...#.#.#...#.###.#.......#...#.#.#.#.###...#.......#.....#.......###...#
|
||||||
|
#.###.#.#########.#######.#.###.#.#.#.#.#.#.#.#.#.#.###.#.#######.###.###.#.###.#.###.#.#########.#.#.#.#.#####.#.#####.#.###.#.#########.#.#
|
||||||
|
#...#.#.........#.#...###...###...#...#.#.#.#.#.#.#.#...#.#...###...#.#...#...#.#.....#...#...#...#.#.#.#.....#.#...###.#.#...#.#...#...#.#.#
|
||||||
|
###.#.#########.#.#.#.#################.#.#.#.#.#.#.#.###.#.#.#####.#.#.#####.#.#########.#.#.#.###.#.#.#####.#.###.###.#.#.###.#.#.#.#.#.#.#
|
||||||
|
###.#.###...#...#...#...................#.#.#.#.#.#.#.#...#.#.#...#.#.#.....#.#...#.......#.#.#...#.#.#.#.....#...#.#...#.#.....#.#...#...#.#
|
||||||
|
###.#.###.#.#.###########################.#.#.#.#.#.#.#.###.#.#.#.#.#.#####.#.###.#.#######.#.###.#.#.#.#.#######.#.#.###.#######.#########.#
|
||||||
|
#...#.#...#...#.....#.......#.........#...#.#.#.#.#.#.#...#.#.#.#.#.#...#...#.#...#...#...#.#.#...#.#.#.#...#...#...#...#.........#...#...#.#
|
||||||
|
#.###.#.#######.###.#.#####.#.#######.#.###.#.#.#.#.#.###.#.#.#.#.#.###.#.###.#.#####.#.#.#.#.#.###.#.#.###.#.#.#######.###########.#.#.#.#.#
|
||||||
|
#...#...#.......###...###...#...#.....#...#.#.#.#.#.#.#...#.#.#.#.#...#.#...#.#...#...#.#...#.#...#...#...#...#...#...#.#...........#...#.#.#
|
||||||
|
###.#####.###############.#####.#.#######.#.#.#.#.#.#.#.###.#.#.#.###.#.###.#.###.#.###.#####.###.#######.#######.#.#.#.#.###############.#.#
|
||||||
|
###...#...#...#...###...#.#.....#.....#...#.#.#.#.#.#.#.#...#.#.#.#...#.#...#...#.#...#...###.#...#...###...#...#...#.#.#...............#.#.#
|
||||||
|
#####.#.###.#.#.#.###.#.#.#.#########.#.###.#.#.#.#.#.#.#.###.#.#.#.###.#.#####.#.###.###.###.#.###.#.#####.#.#.#####.#.###############.#.#.#
|
||||||
|
#...#...#...#...#.....#...#.#.........#...#.#.#.#.#...#.#.#...#.#.#...#...#...#...#...#...#...#.#...#.#...#.#.#.#.....#...#...#.....#...#...#
|
||||||
|
#.#.#####.#################.#.###########.#.#.#.#.#####.#.#.###.#.###.#####.#.#####.###.###.###.#.###.#.#.#.#.#.#.#######.#.#.#.###.#.#######
|
||||||
|
#.#.#...#.......#.......#...#.#.....#...#.#...#.#.....#.#.#...#.#.....###...#.......#...###...#.#...#...#.#...#.#.......#...#.#...#...#...###
|
||||||
|
#.#.#.#.#######.#.#####.#.###.#.###.#.#.#.#####.#####.#.#.###.#.#########.###########.#######.#.###.#####.#####.#######.#####.###.#####.#.###
|
||||||
|
#.#...#.........#.#.....#.###.#.###...#.#.....#.#...#.#.#.#...#.........#.....#.....#.#.......#.....#...#...###...#...#.....#.....#.....#...#
|
||||||
|
#.###############.#.#####.###.#.#######.#####.#.#.#.#.#.#.#.###########.#####.#.###.#.#.#############.#.###.#####.#.#.#####.#######.#######.#
|
||||||
|
#...#...#...#...#.#.#...#...#.#.#...#...#...#.#.#.#.#.#.#.#.....#.....#.#.....#.#...#.#...#...#...#...#...#.#...#.#.#.#...#.........#...#...#
|
||||||
|
###.#.#.#.#.#.#.#.#.#.#.###.#.#.#.#.#.###.#.#.#.#.#.#.#.#.#####.#.###.#.#.#####.#.###.###.#.#.#.#.#.#####.#.#.#.#.#.#.#.#.###########.#.#.###
|
||||||
|
#...#.#...#...#...#.#.#.#...#.#.#.#...#...#.#.#.#.#.#.#.#.#.....#.###...#...#...#...#.#...#.#.#.#.#.....#.#.#.#...#.#.#.#...#...#...#.#.#...#
|
||||||
|
#.###.#############.#.#.#.###.#.#.#####.###.#.#.#.#.#.#.#.#.#####.#########.#.#####.#.#.###.#.#.#.#####.#.#.#.#####.#.#.###.#.#.#.#.#.#.###.#
|
||||||
|
#.....###...........#.#.#.###...#.#...#...#.#.#...#...#.#.#.#...#.........#.#.#.....#.#...#.#...#.#...#.#...#...#...#.#...#...#...#.#.#.#...#
|
||||||
|
#########.###########.#.#.#######.#.#.###.#.#.#########.#.#.#.#.#########.#.#.#.#####.###.#.#####.#.#.#.#######.#.###.###.#########.#.#.#.###
|
||||||
|
#...#...#.....#.....#.#...#.......#.#.#...#.#.........#.#.#.#.#...#.......#.#.#.....#...#.#...#...#.#.#.###...#.#...#.#...#.......#.#.#.#...#
|
||||||
|
#.#.#.#.#####.#.###.#.#####.#######.#.#.###.#########.#.#.#.#.###.#.#######.#.#####.###.#.###.#.###.#.#.###.#.#.###.#.#.###.#####.#.#.#.###.#
|
||||||
|
#.#.#.#.#...#.#.#...#...#...#...#...#.#...#.#...#.....#.#.#.#.#...#.#.......#.###...#...#.#...#...#.#.#...#.#.#.#...#.#.....#...#.#...#.....#
|
||||||
|
#.#.#.#.#.#.#.#.#.#####.#.###.#.#.###.###.#.#.#.#.#####.#.#.#.#.###.#.#######.###.###.###.#.#####.#.#.###.#.#.#.#.###.#######.#.#.###########
|
||||||
|
#.#...#...#...#.#...#...#...#.#.#.###...#.#.#.#...#...#...#.#.#...#.#.#.....#...#.#...#...#.#.....#.#.....#.#...#...#.......#.#...#.........#
|
||||||
|
#.#############.###.#.#####.#.#.#.#####.#.#.#.#####.#.#####.#.###.#.#.#.###.###.#.#.###.###.#.#####.#######.#######.#######.#.#####.#######.#
|
||||||
|
#...#.......#...#...#.....#.#.#.#.....#.#.#.#.......#...###...###...#.#.#...#...#.#.#...#...#.#...#.#.......#.....#.......#.#.......#.......#
|
||||||
|
###.#.#####.#.###.#######.#.#.#.#####.#.#.#.###########.#############.#.#.###.###.#.#.###.###.#.#.#.#.#######.###.#######.#.#########.#######
|
||||||
|
#...#...#...#.#...#.....#.#.#.#.#...#.#.#.#...#.....#...#...#####...#.#.#...#...#...#...#...#.#.#.#.#...#...#...#...#...#.#.#...#...#.......#
|
||||||
|
#.#####.#.###.#.###.###.#.#.#.#.#.#.#.#.#.###.#.###.#.###.#.#####.#.#.#.###.###.#######.###.#.#.#.#.###.#.#.###.###.#.#.#.#.#.#.#.#.#######.#
|
||||||
|
#.....#.#...#.#...#.#...#.#.#.#...#.#.#.#...#.#.###.#.....#...#...#...#.###...#...#.....#...#...#.#...#...#.#...###.#.#.#.#.#.#.#.#...#.....#
|
||||||
|
#####.#.###.#.###.#.#.###.#.#.#####.#.#.###.#.#.###.#########.#.#######.#####.###.#.#####.#######.###.#####.#.#####.#.#.#.#.#.#.#.###.#.#####
|
||||||
|
#.....#.###...###...#.#...#...#.....#.#...#.#.#.#...#.......#.#.#.....#.#...#.#...#.#...#.....#...#...#.....#.....#.#.#.#.#.#.#.#...#.#.....#
|
||||||
|
#.#####.#############.#.#######.#####.###.#.#.#.#.###.#####.#.#.#.###.#.#.#.#.#.###.#.#.#####.#.###.###.#########.#.#.#.#.#.#.#.###.#.#####.#
|
||||||
|
#.#...#.....#.........#.......#.#...#...#.#.#.#.#...#.....#.#.#.#.#...#.#.#...#...#.#.#...#...#...#...#.#...#...#.#.#.#.#.#.#.#.#...#...#...#
|
||||||
|
#.#.#.#####.#.###############.#.#.#.###.#.#.#.#.###.#####.#.#.#.#.#.###.#.#######.#.#.###.#.#####.###.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#####.#.###
|
||||||
|
#...#.......#.................#...#.....#...#...###.......#...#...#.....#.........#...###...#####.....#...#...#...#...#...#...#...#####...###
|
||||||
|
#############################################################################################################################################
|
15
2024/day20_race_condition/tests/sample_input
Normal file
15
2024/day20_race_condition/tests/sample_input
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
###############
|
||||||
|
#...#...#.....#
|
||||||
|
#.#.#.#.#.###.#
|
||||||
|
#S#...#.#.#...#
|
||||||
|
#######.#.#.###
|
||||||
|
#######.#.#...#
|
||||||
|
#######.#.###.#
|
||||||
|
###..E#...#...#
|
||||||
|
###.#######.###
|
||||||
|
#...###...#...#
|
||||||
|
#.#####.#.###.#
|
||||||
|
#.#...#.#.#...#
|
||||||
|
#.#.#.#.#.#.###
|
||||||
|
#...#...#...###
|
||||||
|
###############
|
Loading…
Add table
Add a link
Reference in a new issue