first commit
This commit is contained in:
commit
cfe3798d17
42 changed files with 9617 additions and 0 deletions
1
2022/day1/.gitignore
vendored
Executable file
1
2022/day1/.gitignore
vendored
Executable file
|
@ -0,0 +1 @@
|
|||
/target
|
7
2022/day1/Cargo.lock
generated
Executable file
7
2022/day1/Cargo.lock
generated
Executable file
|
@ -0,0 +1,7 @@
|
|||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 3
|
||||
|
||||
[[package]]
|
||||
name = "day1"
|
||||
version = "0.1.0"
|
8
2022/day1/Cargo.toml
Executable file
8
2022/day1/Cargo.toml
Executable file
|
@ -0,0 +1,8 @@
|
|||
[package]
|
||||
name = "day1"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
35
2022/day1/Task
Executable file
35
2022/day1/Task
Executable file
|
@ -0,0 +1,35 @@
|
|||
The jungle must be too overgrown and difficult to navigate in vehicles or access from the air; the Elves' expedition traditionally goes on foot. As your boats approach land, the Elves begin taking inventory of their supplies. One important consideration is food - in particular, the number of Calories each Elf is carrying (your puzzle input).
|
||||
|
||||
The Elves take turns writing down the number of Calories contained by the various meals, snacks, rations, etc. that they've brought with them, one item per line. Each Elf separates their own inventory from the previous Elf's inventory (if any) by a blank line.
|
||||
|
||||
For example, suppose the Elves finish writing their items' Calories and end up with the following list:
|
||||
|
||||
1000
|
||||
2000
|
||||
3000
|
||||
|
||||
4000
|
||||
|
||||
5000
|
||||
6000
|
||||
|
||||
7000
|
||||
8000
|
||||
9000
|
||||
|
||||
10000
|
||||
|
||||
This list represents the Calories of the food carried by five Elves:
|
||||
|
||||
The first Elf is carrying food with 1000, 2000, and 3000 Calories, a total of 6000 Calories.
|
||||
The second Elf is carrying one food item with 4000 Calories.
|
||||
The third Elf is carrying food with 5000 and 6000 Calories, a total of 11000 Calories.
|
||||
The fourth Elf is carrying food with 7000, 8000, and 9000 Calories, a total of 24000 Calories.
|
||||
The fifth Elf is carrying one food item with 10000 Calories.
|
||||
|
||||
In case the Elves get hungry and need extra snacks, they need to know which Elf to ask: they'd like to know how many Calories are being carried by the Elf carrying the most Calories. In the example above, this is 24000 (carried by the fourth Elf).
|
||||
|
||||
Find the Elf carrying the most Calories. How many total Calories is that Elf carrying?
|
||||
|
||||
Answer: 71934
|
||||
duration 390.9µs - 950.1µs
|
2255
2022/day1/data
Executable file
2255
2022/day1/data
Executable file
File diff suppressed because it is too large
Load diff
39
2022/day1/src/main.rs
Executable file
39
2022/day1/src/main.rs
Executable file
|
@ -0,0 +1,39 @@
|
|||
use std::fs::File;
|
||||
use std::io::prelude::*;
|
||||
use std::io::Result;
|
||||
use std::time::Instant;
|
||||
|
||||
fn main() -> Result<()> {
|
||||
let start_time = Instant::now();
|
||||
let mut x = File::open("./data").expect("file not found");
|
||||
let mut content = String::new();
|
||||
x.read_to_string(&mut content)?;
|
||||
|
||||
// Part 1
|
||||
let mut elf: Vec<i32> = content
|
||||
.split("\n")
|
||||
.collect::<Vec<&str>>()
|
||||
.split(|line| line.is_empty())
|
||||
.map(|line| line.iter().fold(0, |acc, x| acc + x.parse::<i32>().unwrap()))
|
||||
.collect();
|
||||
|
||||
// Part 1 version 2
|
||||
// let mut elf: Vec<i32> = content
|
||||
// .lines()
|
||||
// .map(|line| line.parse::<i32>().unwrap_or_default())
|
||||
// .collect::<Vec<i32>>()
|
||||
// .split(|line| *line == 0)
|
||||
// .map(|x| x.iter().fold(0, |acc, x| acc + x))
|
||||
// .collect();
|
||||
println!("Elf with: {} Calories", elf.iter().max().unwrap());
|
||||
let duration = start_time.elapsed();
|
||||
println!("{:?}", duration);
|
||||
|
||||
// Part 2
|
||||
elf.sort();
|
||||
let max = elf.pop().unwrap();
|
||||
let mid = elf.pop().unwrap();
|
||||
let min = elf.pop().unwrap();
|
||||
println!("{:?}", max + mid + min);
|
||||
Ok(())
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue