結果
問題 | No.2740 Old Maid |
ユーザー | naut3 |
提出日時 | 2024-04-24 00:36:43 |
言語 | Rust (1.77.0 + proconio) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,542 bytes |
コンパイル時間 | 13,880 ms |
コンパイル使用メモリ | 389,856 KB |
実行使用メモリ | 23,908 KB |
最終ジャッジ日時 | 2024-11-06 07:11:33 |
合計ジャッジ時間 | 23,477 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 125 ms
23,908 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | AC | 55 ms
8,704 KB |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | AC | 45 ms
7,808 KB |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | AC | 1 ms
6,820 KB |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | AC | 1 ms
6,816 KB |
testcase_50 | RE | - |
testcase_51 | AC | 1 ms
6,820 KB |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | AC | 1 ms
6,816 KB |
testcase_56 | AC | 1 ms
6,816 KB |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | RE | - |
testcase_60 | AC | 1 ms
6,820 KB |
testcase_61 | RE | - |
testcase_62 | AC | 1 ms
6,816 KB |
testcase_63 | AC | 1 ms
6,816 KB |
testcase_64 | AC | 1 ms
6,816 KB |
ソースコード
#![allow(non_snake_case, unused_imports, unused_must_use)] use std::io::{self, prelude::*}; use std::str; fn main() { let (stdin, stdout) = (io::stdin(), io::stdout()); let mut scan = Scanner::new(stdin.lock()); let mut out = io::BufWriter::new(stdout.lock()); macro_rules! input { ($T: ty) => { scan.token::<$T>() }; ($T: ty, $N: expr) => { (0..$N).map(|_| scan.token::<$T>()).collect::<Vec<_>>() }; } let N = input!(usize); let P = input!(usize, N); let mut pos_to_val = std::collections::BTreeMap::new(); for i in 0..N { pos_to_val.insert(i, P[i]); } let mut val_to_pos = std::collections::BTreeMap::new(); for i in 0..N { val_to_pos.insert(P[i], i); } let mut hq = std::collections::BinaryHeap::new(); for i in 0..N { hq.push(std::cmp::Reverse(P[i])); } let mut ans = vec![]; while !hq.is_empty() { let m = hq.pop().unwrap().0; match val_to_pos.get(&m) { Some(&p1) => { if p1 == N - 1 { continue; } let (&p2, &v2) = pos_to_val.range(p1 + 1..).next().unwrap(); ans.push(m); ans.push(v2); pos_to_val.remove(&p1); pos_to_val.remove(&p2); val_to_pos.remove(&v2); val_to_pos.remove(&m); } None => { continue; } } } writeln!( out, "{}", ans.iter() .map(|x| x.to_string()) .collect::<Vec<_>>() .join(" ") ); } struct Scanner<R> { reader: R, buf_str: Vec<u8>, buf_iter: str::SplitWhitespace<'static>, } impl<R: BufRead> Scanner<R> { fn new(reader: R) -> Self { Self { reader, buf_str: vec![], buf_iter: "".split_whitespace(), } } fn token<T: str::FromStr>(&mut self) -> T { loop { if let Some(token) = self.buf_iter.next() { return token.parse().ok().expect("Failed parse"); } self.buf_str.clear(); self.reader .read_until(b'\n', &mut self.buf_str) .expect("Failed read"); self.buf_iter = unsafe { let slice = str::from_utf8_unchecked(&self.buf_str); std::mem::transmute(slice.split_whitespace()) } } } }