結果

問題 No.945 YKC饅頭
ユーザー akakimidoriakakimidori
提出日時 2020-04-14 22:38:12
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 1,980 bytes
コンパイル時間 15,657 ms
コンパイル使用メモリ 392,736 KB
実行使用メモリ 22,608 KB
最終ジャッジ日時 2024-10-01 18:17:38
合計ジャッジ時間 18,129 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 1 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 1 ms
5,248 KB
testcase_25 AC 1 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 AC 1 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 6 ms
5,248 KB
testcase_32 AC 9 ms
5,248 KB
testcase_33 AC 17 ms
7,552 KB
testcase_34 AC 29 ms
13,176 KB
testcase_35 AC 47 ms
19,200 KB
testcase_36 AC 33 ms
15,488 KB
testcase_37 AC 30 ms
14,216 KB
testcase_38 AC 28 ms
12,928 KB
testcase_39 AC 11 ms
5,376 KB
testcase_40 AC 17 ms
6,016 KB
testcase_41 AC 9 ms
5,248 KB
testcase_42 AC 45 ms
17,280 KB
testcase_43 AC 32 ms
13,964 KB
testcase_44 AC 35 ms
15,348 KB
testcase_45 AC 41 ms
19,028 KB
testcase_46 AC 5 ms
5,248 KB
testcase_47 AC 29 ms
12,672 KB
testcase_48 AC 6 ms
5,248 KB
testcase_49 AC 15 ms
7,168 KB
testcase_50 AC 45 ms
19,712 KB
testcase_51 AC 58 ms
22,372 KB
testcase_52 AC 57 ms
22,528 KB
testcase_53 AC 55 ms
22,608 KB
testcase_54 AC 53 ms
22,528 KB
testcase_55 AC 54 ms
22,532 KB
testcase_56 AC 12 ms
6,356 KB
testcase_57 AC 6 ms
5,504 KB
testcase_58 AC 71 ms
16,828 KB
testcase_59 AC 82 ms
19,432 KB
testcase_60 AC 44 ms
10,368 KB
testcase_61 AC 75 ms
17,792 KB
testcase_62 AC 73 ms
17,104 KB
testcase_63 AC 7 ms
5,760 KB
testcase_64 AC 47 ms
10,880 KB
testcase_65 AC 40 ms
9,472 KB
testcase_66 AC 37 ms
9,344 KB
testcase_67 AC 61 ms
13,824 KB
testcase_68 AC 46 ms
10,496 KB
testcase_69 AC 20 ms
7,040 KB
testcase_70 AC 24 ms
7,424 KB
testcase_71 AC 24 ms
7,552 KB
testcase_72 AC 53 ms
12,092 KB
testcase_73 AC 78 ms
18,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8 より
macro_rules! input {
    (source = $s:expr, $($r:tt)*) => {
        let mut iter = $s.split_whitespace();
        input_inner!{iter, $($r)*}
    };
    ($($r:tt)*) => {
        let s = {
            use std::io::Read;
            let mut s = String::new();
            std::io::stdin().read_to_string(&mut s).unwrap();
            s
        };
        let mut iter = s.split_whitespace();
        input_inner!{iter, $($r)*}
    };
}

macro_rules! input_inner {
    ($iter:expr) => {};
    ($iter:expr, ) => {};
    ($iter:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($iter, $t);
        input_inner!{$iter $($r)*}
    };
}

macro_rules! read_value {
    ($iter:expr, ( $($t:tt),* )) => {
        ( $(read_value!($iter, $t)),* )
    };
    ($iter:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($iter, $t)).collect::<Vec<_>>()
    };
    ($iter:expr, chars) => {
        read_value!($iter, String).chars().collect::<Vec<char>>()
    };
    ($iter:expr, usize1) => {
        read_value!($iter, usize) - 1
    };
    ($iter:expr, $t:ty) => {
        $iter.next().unwrap().parse::<$t>().expect("Parse error")
    };
}

//

fn run() {
    input! {
        n: usize,
        m: usize,
        op: [(usize1, usize, chars); m],
    }
    let mut set = (0..n).collect::<std::collections::BTreeSet<usize>>();
    let mut cnt = [0; 3];
    for (l, r, c) in op {
        let c = c[0];
        let k = match c {
            'Y' => 0,
            'K' => 1,
            'C' => 2,
            _ => unreachable!(),
        };
        let cnt = &mut cnt[k];
        let mut memo = vec![];
        use std::ops::Bound::*;
        for &v in set.range((Included(&l), Excluded(&r))) {
            *cnt += 1;
            memo.push(v);
        }
        for v in memo {
            set.remove(&v);
        }
    }
    println!("{} {} {}", cnt[0], cnt[1], cnt[2]);
}

fn main() {
    run();
}
0