20240921 finished.

This commit is contained in:
jackfiled 2024-09-21 13:36:19 +08:00
parent 1743fc2887
commit 6605c2aca0
2 changed files with 45 additions and 1 deletions

View File

@ -242,3 +242,4 @@ mod p815_bus_routes;
mod p2332_the_latest_time_to_catch_a_bus; mod p2332_the_latest_time_to_catch_a_bus;
mod p2414_length_of_the_longest_alphabetical_continuous_substring; mod p2414_length_of_the_longest_alphabetical_continuous_substring;
mod p2376_count_special_integers; mod p2376_count_special_integers;
mod p2374_node_with_highest_edge_score;

View File

@ -0,0 +1,43 @@
/**
* [2374] Node With Highest Edge Score
*/
pub struct Solution {}
// submission codes start here
impl Solution {
pub fn edge_score(edges: Vec<i32>) -> i32 {
use std::collections::HashMap;
use std::cmp::Ordering;
let mut map = HashMap::new();
for (i, &v) in edges.iter().enumerate() {
let entry = map.entry(v).or_insert(0);
*entry += i;
}
*map.iter().max_by(|a, b| {
match a.1.cmp(b.1) {
Ordering::Less => { Ordering::Less }
Ordering::Equal => { b.0.cmp(a.0) }
Ordering::Greater => { Ordering::Greater }
}
}).unwrap().0
}
}
// submission codes end
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_2374() {
assert_eq!(7, Solution::edge_score(vec![1, 0, 0, 0, 0, 7, 7, 5]));
assert_eq!(0, Solution::edge_score(vec![2, 0, 0, 2]));
}
}