結果
問題 | No.649 ここでちょっとQK! |
ユーザー | ngtkana |
提出日時 | 2023-10-06 14:01:05 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 252 ms / 3,000 ms |
コード長 | 2,405 bytes |
コンパイル時間 | 25,563 ms |
コンパイル使用メモリ | 395,324 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-26 15:25:51 |
合計ジャッジ時間 | 14,885 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 0 ms
6,940 KB |
testcase_03 | AC | 252 ms
6,940 KB |
testcase_04 | AC | 44 ms
6,940 KB |
testcase_05 | AC | 46 ms
6,940 KB |
testcase_06 | AC | 50 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 0 ms
6,944 KB |
testcase_12 | AC | 35 ms
6,940 KB |
testcase_13 | AC | 33 ms
6,940 KB |
testcase_14 | AC | 35 ms
6,940 KB |
testcase_15 | AC | 41 ms
6,940 KB |
testcase_16 | AC | 34 ms
6,940 KB |
testcase_17 | AC | 39 ms
6,944 KB |
testcase_18 | AC | 44 ms
6,940 KB |
testcase_19 | AC | 50 ms
6,944 KB |
testcase_20 | AC | 55 ms
6,940 KB |
testcase_21 | AC | 57 ms
6,944 KB |
testcase_22 | AC | 60 ms
6,944 KB |
testcase_23 | AC | 64 ms
6,944 KB |
testcase_24 | AC | 68 ms
6,944 KB |
testcase_25 | AC | 71 ms
6,944 KB |
testcase_26 | AC | 78 ms
6,940 KB |
testcase_27 | AC | 1 ms
6,944 KB |
testcase_28 | AC | 1 ms
6,944 KB |
testcase_29 | AC | 1 ms
6,944 KB |
testcase_30 | AC | 29 ms
6,944 KB |
testcase_31 | AC | 31 ms
6,940 KB |
testcase_32 | AC | 1 ms
6,940 KB |
testcase_33 | AC | 1 ms
6,940 KB |
testcase_34 | AC | 1 ms
6,940 KB |
testcase_35 | AC | 1 ms
6,944 KB |
ソースコード
use input::input_array; use input::input_vec; use std::cmp::Reverse; use std::collections::BinaryHeap; fn main() { let [q, k] = input_array::<usize, 2>(); let k = k - 1; let mut bottomk = BinaryHeap::<usize>::new(); let mut others = BinaryHeap::<Reverse<usize>>::new(); for _ in 0..q { let query = input_vec::<usize>(); match query[0] { 1 => { bottomk.push(query[1]); if k < bottomk.len() { others.push(Reverse(bottomk.pop().unwrap())); } } 2 => { let ans = others.pop().map(|Reverse(x)| x).unwrap_or(!0) as isize; println!("{}", ans); } _ => unreachable!(), } } } // input {{{ #[allow(dead_code)] mod input { use std::cell::Cell; use std::convert::TryFrom; use std::io::stdin; use std::io::BufRead; use std::io::BufReader; use std::io::Lines; use std::io::Stdin; use std::str::FromStr; use std::sync::Mutex; use std::sync::Once; type Server = Mutex<Lines<BufReader<Stdin>>>; static ONCE: Once = Once::new(); pub struct Lazy(Cell<Option<Server>>); unsafe impl Sync for Lazy {} fn line() -> String { static SYNCER: Lazy = Lazy(Cell::new(None)); ONCE.call_once(|| { SYNCER .0 .set(Some(Mutex::new(BufReader::new(stdin()).lines()))); }); unsafe { (*SYNCER.0.as_ptr()) .as_ref() .unwrap() .lock() .unwrap() .next() .unwrap() .unwrap() } } pub trait ForceFromStr: FromStr { fn force_from_str(s: &str) -> Self; } impl<T, E> ForceFromStr for T where T: FromStr<Err = E>, E: std::fmt::Debug, { fn force_from_str(s: &str) -> Self { s.parse().unwrap() } } pub fn input_array<T: ForceFromStr, const N: usize>() -> [T; N] where T: std::fmt::Debug, { <[_; N]>::try_from(input_vec()).unwrap() } pub fn input_vec<T: ForceFromStr>() -> Vec<T> { line() .split_whitespace() .map(T::force_from_str) .collect::<Vec<_>>() } pub fn input<T: ForceFromStr>() -> T { T::force_from_str(&line()) } } // }}}