-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.rs
41 lines (40 loc) · 1.18 KB
/
main.rs
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
pub fn main() {
let mut hands = include_bytes!("../input.txt")
.split(|b| b == &b'\n')
.map(|hand| {
let (mut ranks, mut power) = ([0u8; 13], 0);
for i in 0..5 {
let card = match hand[i] {
b'A' => 12,
b'K' => 11,
b'Q' => 10,
b'J' => 9,
b'T' => 8,
n => n - b'0' - 2,
};
ranks[card as usize] += 1;
power |= (card as u32) << 4 * (4 - i);
}
ranks.sort_unstable_by(|a, b| b.cmp(a));
power |= match ranks[0] {
5 => 6,
4 => 5,
3 if ranks[1] == 2 => 4,
3 => 3,
2 if ranks[1] == 2 => 2,
2 => 1,
_ => 0,
} << 29;
(power, atoi::atoi::<u32>(&hand[6..]).unwrap())
})
.collect::<Vec<_>>();
hands.sort_unstable();
println!(
"{}",
hands
.into_iter()
.enumerate()
.map(|(i, (_power, bet))| bet * (i as u32 + 1))
.sum::<u32>()
);
}