結果

問題 No.649 ここでちょっとQK!
ユーザー phsplsphspls
提出日時 2022-12-25 14:08:48
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 246 ms / 3,000 ms
コード長 1,153 bytes
コンパイル時間 12,544 ms
コンパイル使用メモリ 400,896 KB
実行使用メモリ 17,572 KB
最終ジャッジ日時 2024-11-19 02:41:26
合計ジャッジ時間 17,044 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,820 KB
testcase_01 AC 0 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 246 ms
15,888 KB
testcase_04 AC 57 ms
17,572 KB
testcase_05 AC 55 ms
17,520 KB
testcase_06 AC 57 ms
17,532 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 1 ms
6,820 KB
testcase_12 AC 41 ms
9,728 KB
testcase_13 AC 42 ms
9,600 KB
testcase_14 AC 40 ms
9,600 KB
testcase_15 AC 42 ms
9,600 KB
testcase_16 AC 38 ms
9,600 KB
testcase_17 AC 47 ms
10,368 KB
testcase_18 AC 52 ms
11,264 KB
testcase_19 AC 60 ms
11,776 KB
testcase_20 AC 60 ms
12,760 KB
testcase_21 AC 67 ms
13,568 KB
testcase_22 AC 70 ms
14,224 KB
testcase_23 AC 73 ms
15,024 KB
testcase_24 AC 80 ms
15,784 KB
testcase_25 AC 82 ms
16,620 KB
testcase_26 AC 90 ms
17,236 KB
testcase_27 AC 1 ms
6,820 KB
testcase_28 AC 1 ms
6,816 KB
testcase_29 AC 1 ms
6,816 KB
testcase_30 AC 38 ms
9,600 KB
testcase_31 AC 38 ms
9,728 KB
testcase_32 AC 1 ms
6,816 KB
testcase_33 AC 1 ms
6,820 KB
testcase_34 AC 1 ms
6,816 KB
testcase_35 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::{collections::BinaryHeap, cmp::Reverse};


fn main() {
    let mut qk = String::new();
    std::io::stdin().read_line(&mut qk).ok();
    let qk: Vec<usize> = qk.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let q = qk[0];
    let k = qk[1];
    let queries = (0..q).map(|_| {
            let mut temp = String::new();
            std::io::stdin().read_line(&mut temp).ok();
            let temp: Vec<usize> = temp.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
            temp
        })
        .collect::<Vec<_>>();

    let mut targets = BinaryHeap::new();
    let mut rests = BinaryHeap::new();
    for v in queries.iter() {
        if v[0] == 1 {
            targets.push(v[1]);
            if targets.len() > k {
                rests.push(Reverse(targets.pop().unwrap()));
            }
        } else {
            if targets.len() == k {
                println!("{}", targets.pop().unwrap());
                if let Some(Reverse(val)) = rests.pop() {
                    targets.push(val);
                }
            } else {
                println!("-1");
            }
        }
    }
}
0