-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.rs
203 lines (183 loc) · 5.5 KB
/
mod.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
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
use std::cmp::Ordering;
use std::collections::HashMap;
fn card_value(card: char, jokers: bool) -> u32 {
if !jokers {
match card {
'A' => 14,
'K' => 13,
'Q' => 12,
'J' => 11,
'T' => 10,
_ => card.to_digit(10).unwrap(),
}
} else {
match card {
'A' => 14,
'K' => 13,
'Q' => 12,
'J' => 1,
'T' => 10,
_ => card.to_digit(10).unwrap(),
}
}
}
enum Hand {
Five = 7,
Four = 6,
Three = 3,
Pair = 1,
HighCard = 0,
FullHouse = 4, // Three + Pair
TwoPair = 2, // Pair + Pair
}
#[derive(Debug, Eq)]
struct Camel {
hand: Vec<char>,
bid: usize,
jokers: bool,
}
impl Camel {
fn hand_type(&self) -> usize {
let mut strength = HashMap::new();
strength.entry(&'J').or_insert(0);
for c in &self.hand {
strength.entry(c).and_modify(|m| *m += 1).or_insert(1);
}
let jokers = &strength.get(&'J').unwrap().clone();
let mut hand_value = 0;
// 7 five of a kind
// 6 four of a kind
// 4 full house
// 3 three of a kind
// 2 two pair
// 1 one pair
// 0 high card
for (card, count) in strength {
if self.jokers && card == &'J' {
// skip jokers
continue;
}
hand_value += match count {
5 => Hand::Five,
4 => Hand::Four,
3 => Hand::Three, // Three + Pair == FullHouse
2 => Hand::Pair, // => Pair + Pair == TwoPair
_ => Hand::HighCard,
} as usize;
}
let mut hand = match hand_value {
7 => Hand::Five,
6 => Hand::Four,
5 => unreachable!(),
4 => Hand::FullHouse,
3 => Hand::Three,
2 => Hand::TwoPair,
1 => Hand::Pair,
_ => Hand::HighCard,
};
if self.jokers {
hand = match hand {
// five of a kind
Hand::Five => Hand::Five, // no space for jokers
// four of a kind
Hand::Four => match jokers {
1 => Hand::Five, // five of a kind
_ => Hand::Four,
},
// full house
Hand::FullHouse => Hand::FullHouse, // no space for jokers
// three of a kind
Hand::Three => match jokers {
2 => Hand::Five, // five of a kind
1 => Hand::Four, // four of a kind
_ => Hand::Three,
},
// two pairs
Hand::TwoPair => match jokers {
1 => Hand::FullHouse, // full house
_ => Hand::TwoPair,
},
// one pair
Hand::Pair => match jokers {
3 => Hand::Five, // five of a kind
2 => Hand::Four, // four of a kind
1 => Hand::Three, // three of a kind
_ => Hand::Pair,
},
// single card
_ => match jokers {
5 => Hand::Five, // five of a kind
4 => Hand::Five, // five of a kind
3 => Hand::Four, // four of a kind
2 => Hand::Three, // three of a kind
1 => Hand::Pair, // one pair
_ => Hand::HighCard, // all cards distinct
},
};
}
hand as usize
}
}
impl PartialOrd for Camel {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl Ord for Camel {
fn cmp(&self, other: &Self) -> Ordering {
let own_hand = self.hand_type();
let other_hand = other.hand_type();
if own_hand == other_hand {
// hand equally strong, find better card
for i in 0..5 {
if card_value(self.hand[i], self.jokers) < card_value(other.hand[i], self.jokers) {
return Ordering::Less;
}
if card_value(self.hand[i], self.jokers) > card_value(other.hand[i], self.jokers) {
return Ordering::Greater;
}
}
Ordering::Equal
} else {
own_hand.cmp(&other_hand)
}
}
}
impl PartialEq for Camel {
fn eq(&self, other: &Self) -> bool {
self.hand == other.hand
}
}
pub fn solve(input: String) {
let mut hands_one = Vec::new();
let mut hands_two = Vec::new();
for line in input.lines() {
let (h, b) = line.split_once(' ').unwrap();
let camel_one = Camel {
hand: h.chars().collect(),
bid: b.parse::<usize>().unwrap(),
jokers: false,
};
hands_one.push(camel_one);
let camel_two = Camel {
hand: h.chars().collect(),
bid: b.parse::<usize>().unwrap(),
jokers: true,
};
hands_two.push(camel_two);
}
hands_one.sort();
hands_two.sort();
let mut winnings_one = 0;
for (i, camel) in hands_one.iter().enumerate() {
winnings_one += camel.bid * (i + 1);
}
let mut winnings_two = 0;
for (i, camel) in hands_two.iter().enumerate() {
winnings_two += camel.bid * (i + 1);
}
aoc::print_solution(&[
winnings_one,
winnings_two,
])
}