結果

問題 No.945 YKC饅頭
ユーザー phsplsphspls
提出日時 2020-01-22 22:44:01
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 2,949 bytes
コンパイル時間 22,232 ms
コンパイル使用メモリ 402,540 KB
実行使用メモリ 49,836 KB
最終ジャッジ日時 2024-07-16 03:57:04
合計ジャッジ時間 30,475 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 1 ms
6,948 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 1 ms
6,944 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 14 ms
6,940 KB
testcase_32 AC 19 ms
11,832 KB
testcase_33 AC 66 ms
20,496 KB
testcase_34 AC 115 ms
25,720 KB
testcase_35 AC 250 ms
44,908 KB
testcase_36 AC 115 ms
29,336 KB
testcase_37 AC 105 ms
28,888 KB
testcase_38 AC 107 ms
26,532 KB
testcase_39 AC 39 ms
13,504 KB
testcase_40 AC 43 ms
17,280 KB
testcase_41 AC 21 ms
10,880 KB
testcase_42 AC 178 ms
35,752 KB
testcase_43 AC 99 ms
27,592 KB
testcase_44 AC 172 ms
37,480 KB
testcase_45 AC 183 ms
35,956 KB
testcase_46 AC 11 ms
7,424 KB
testcase_47 AC 118 ms
26,740 KB
testcase_48 AC 19 ms
7,020 KB
testcase_49 AC 63 ms
17,760 KB
testcase_50 AC 236 ms
37,800 KB
testcase_51 AC 290 ms
49,752 KB
testcase_52 AC 299 ms
49,740 KB
testcase_53 AC 276 ms
49,836 KB
testcase_54 AC 299 ms
49,744 KB
testcase_55 AC 302 ms
49,828 KB
testcase_56 AC 23 ms
16,676 KB
testcase_57 AC 13 ms
12,664 KB
testcase_58 AC 176 ms
40,944 KB
testcase_59 AC 204 ms
43,764 KB
testcase_60 AC 87 ms
25,920 KB
testcase_61 AC 180 ms
41,804 KB
testcase_62 AC 177 ms
41,332 KB
testcase_63 AC 13 ms
11,916 KB
testcase_64 AC 97 ms
28,924 KB
testcase_65 AC 76 ms
24,736 KB
testcase_66 AC 74 ms
24,168 KB
testcase_67 AC 135 ms
33,328 KB
testcase_68 AC 91 ms
28,328 KB
testcase_69 AC 37 ms
17,316 KB
testcase_70 AC 42 ms
18,684 KB
testcase_71 AC 42 ms
18,912 KB
testcase_72 AC 113 ms
30,876 KB
testcase_73 AC 195 ms
42,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;
use std::collections::{HashMap, BinaryHeap};

fn main() {
    const MIN_VAL: isize = -10_000_000;

    let mut all_data = String::new();
    std::io::stdin().read_to_string(&mut all_data).ok();
    let all_data: Vec<&str> = all_data.trim().split('\n').map(|s| s.trim()).collect();
    let nm: Vec<isize> = all_data.iter().next().unwrap().split_whitespace().map(|i| i.parse::<isize>().unwrap()).collect();
    let n: isize = nm[0];
    let m: isize = nm[1];
    let mut idx2kmc: HashMap<usize, String> = HashMap::new();
    let mut starts: BinaryHeap<isize> = BinaryHeap::new();
    let mut ends: BinaryHeap<isize> = BinaryHeap::new();
    let mut mapping: Vec<Vec<isize>> = vec![vec![]; (n as usize)+2];
    all_data.iter().enumerate().skip(1).take(m as usize).for_each(|pair| {
        let mark_val = pair.0 as isize;
        let values: Vec<&str> = (pair.1).split_whitespace().collect();
        let start: usize = values[0].parse::<usize>().unwrap();
        let end: usize = values[1].parse::<usize>().unwrap();
        let keyword: String = values[2].to_string();
        idx2kmc.insert(mark_val as usize, keyword);
        mapping[start].push(mark_val);
        mapping[end+1].push(-mark_val);
    });

    let mut result_map: Vec<Option<String>> = vec![None; n as usize];
    let mut current_val: isize = MIN_VAL;
    mapping.iter().skip(1).take(n as usize).enumerate().for_each(|pair| {
        let start_ends = pair.1;
        if !start_ends.is_empty() {
            start_ends.iter().for_each(|se| {
                if se > &0isize {
                    starts.push(-se);
                } else {
                    ends.push(*se);
                }
            });
        }
        if !ends.is_empty() {
            if ends.peek().unwrap() == &current_val {
                current_val = MIN_VAL;
                ends.pop();
            }
        }
        while !starts.is_empty() && !ends.is_empty() {
            if starts.peek().unwrap() != ends.peek().unwrap() {
                break;
            } else {
                starts.pop();
                ends.pop();
            }
        }
        if !starts.is_empty() {
            if starts.peek().unwrap() > &current_val {
                if current_val > MIN_VAL {
                    starts.push(current_val);
                }
                current_val = starts.pop().unwrap();
            }
        }
        let v = (-current_val) as usize;
        result_map[pair.0] = idx2kmc.get(&v).map(|i| i.to_string());
    });
    let mut y = 0;
    let mut k = 0;
    let mut c = 0;
    result_map.iter().for_each(|r| {
        match r {
            Some(x) => {
                match x.as_str() {
                    "Y" => { y += 1; },
                    "K" => { k += 1; },
                    "C" => { c += 1; },
                    _ => { },
                }
            },
            None => { },
        }
    });
    println!("{} {} {}", y, k, c);
}
0