結果

問題 No.2422 regisys?
ユーザー Yukino DX.Yukino DX.
提出日時 2024-09-04 11:19:44
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 1,394 bytes
コンパイル時間 13,807 ms
コンパイル使用メモリ 401,808 KB
実行使用メモリ 20,928 KB
最終ジャッジ日時 2024-09-04 11:20:06
合計ジャッジ時間 19,093 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,812 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 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 1 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 1 ms
6,940 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 1 ms
6,940 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 1 ms
6,944 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 45 ms
8,792 KB
testcase_32 AC 54 ms
11,228 KB
testcase_33 AC 43 ms
8,524 KB
testcase_34 AC 21 ms
6,944 KB
testcase_35 AC 55 ms
10,072 KB
testcase_36 AC 38 ms
8,448 KB
testcase_37 AC 57 ms
11,604 KB
testcase_38 AC 38 ms
8,524 KB
testcase_39 AC 26 ms
6,944 KB
testcase_40 AC 26 ms
6,944 KB
testcase_41 AC 28 ms
6,940 KB
testcase_42 AC 106 ms
16,284 KB
testcase_43 AC 41 ms
8,832 KB
testcase_44 AC 119 ms
16,820 KB
testcase_45 AC 90 ms
14,728 KB
testcase_46 AC 111 ms
16,696 KB
testcase_47 AC 60 ms
10,196 KB
testcase_48 AC 121 ms
17,928 KB
testcase_49 AC 78 ms
12,164 KB
testcase_50 AC 111 ms
17,088 KB
testcase_51 AC 115 ms
19,344 KB
testcase_52 AC 43 ms
8,564 KB
testcase_53 AC 103 ms
15,888 KB
testcase_54 AC 119 ms
20,540 KB
testcase_55 AC 98 ms
16,444 KB
testcase_56 AC 73 ms
14,512 KB
testcase_57 AC 150 ms
20,872 KB
testcase_58 AC 149 ms
20,928 KB
testcase_59 AC 144 ms
20,868 KB
testcase_60 AC 148 ms
20,860 KB
testcase_61 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::{BTreeSet, HashSet};

use proconio::input;

fn main() {
    input! {
        n:usize,
        m:usize,
        a:[usize;n],
        b:[usize;n],
        tc:[(usize,usize);m],
    }

    let mut c_t0 = tc
        .iter()
        .filter_map(|(t, c)| if *t == 0 { Some(*c) } else { None })
        .collect::<Vec<_>>();
    c_t0.sort();
    let mut c_t1 = tc
        .iter()
        .filter_map(|(t, c)| if *t == 1 { Some(*c) } else { None })
        .collect::<Vec<_>>();
    c_t1.sort();

    let mut bs = BTreeSet::new();
    let mut unbuy = (0..n).collect::<HashSet<_>>();

    let mut ids_sort = (0..n).collect::<Vec<_>>();
    ids_sort.sort_by_key(|i| a[*i]);

    let mut ans = 0;
    let mut id = 0;
    for &c in c_t0.iter() {
        while id < n && a[ids_sort[id]] <= c {
            bs.insert((b[ids_sort[id]], ids_sort[id]));
            id += 1;
        }

        if let Some(&last) = bs.last() {
            ans += 1;
            bs.remove(&last);
            unbuy.remove(&last.1);
        }
    }

    let mut b_rem = unbuy.iter().map(|i| b[*i]).collect::<Vec<_>>();
    b_rem.sort_by(|x, y| y.cmp(x));
    for &c in c_t1.iter() {
        match b_rem.last() {
            Some(&last) if last <= c => {
                ans += 1;
                b_rem.pop();
            }

            _ => (),
        }
    }

    ans = n - ans;
    println!("{}", ans);
}
0