1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/rs/task-scheduler.rs
Matej Focko 5549cdd7d8
rs: add «621. Task Scheduler»
Signed-off-by: Matej Focko <mfocko@redhat.com>
2024-03-20 00:16:00 +01:00

21 lines
586 B
Rust

use std::cmp;
use std::collections::HashMap;
impl Solution {
pub fn least_interval(tasks: Vec<char>, n: i32) -> i32 {
let mut freqs: HashMap<char, i32> = HashMap::new();
let mut found_max = 0;
for c in &tasks {
let mut counter = freqs.entry(*c).or_insert(0);
*counter += 1;
found_max = cmp::max(found_max, *counter);
}
let mut time = (1 + n) * (found_max - 1);
time += freqs.values().filter(|&&c| c == found_max).count() as i32;
cmp::max(tasks.len().try_into().unwrap(), time)
}
}