結果

問題 No.2740 Old Maid
ユーザー naut3naut3
提出日時 2024-04-24 00:41:12
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 2,738 bytes
コンパイル時間 13,891 ms
コンパイル使用メモリ 387,416 KB
実行使用メモリ 24,860 KB
最終ジャッジ日時 2024-11-06 07:16:47
合計ジャッジ時間 22,112 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
21,908 KB
testcase_01 AC 133 ms
21,864 KB
testcase_02 AC 130 ms
21,832 KB
testcase_03 AC 134 ms
21,932 KB
testcase_04 AC 136 ms
21,872 KB
testcase_05 AC 131 ms
21,868 KB
testcase_06 AC 128 ms
21,868 KB
testcase_07 AC 133 ms
21,976 KB
testcase_08 AC 133 ms
21,828 KB
testcase_09 AC 130 ms
21,848 KB
testcase_10 AC 123 ms
23,888 KB
testcase_11 AC 135 ms
20,736 KB
testcase_12 AC 154 ms
18,364 KB
testcase_13 AC 164 ms
19,416 KB
testcase_14 AC 27 ms
6,816 KB
testcase_15 AC 39 ms
6,912 KB
testcase_16 AC 114 ms
14,404 KB
testcase_17 AC 27 ms
6,816 KB
testcase_18 AC 157 ms
17,880 KB
testcase_19 AC 56 ms
9,216 KB
testcase_20 AC 188 ms
21,528 KB
testcase_21 AC 33 ms
6,816 KB
testcase_22 AC 105 ms
14,172 KB
testcase_23 AC 20 ms
6,816 KB
testcase_24 AC 53 ms
8,704 KB
testcase_25 AC 209 ms
22,740 KB
testcase_26 AC 3 ms
6,816 KB
testcase_27 AC 13 ms
6,820 KB
testcase_28 AC 109 ms
14,464 KB
testcase_29 AC 103 ms
13,696 KB
testcase_30 AC 5 ms
6,816 KB
testcase_31 AC 233 ms
24,860 KB
testcase_32 AC 65 ms
9,728 KB
testcase_33 AC 211 ms
23,416 KB
testcase_34 AC 99 ms
13,004 KB
testcase_35 AC 53 ms
8,344 KB
testcase_36 AC 55 ms
9,088 KB
testcase_37 AC 79 ms
11,284 KB
testcase_38 AC 45 ms
7,936 KB
testcase_39 AC 24 ms
6,820 KB
testcase_40 AC 132 ms
16,384 KB
testcase_41 AC 183 ms
21,500 KB
testcase_42 AC 1 ms
6,820 KB
testcase_43 AC 1 ms
6,820 KB
testcase_44 AC 1 ms
6,820 KB
testcase_45 AC 1 ms
6,820 KB
testcase_46 AC 1 ms
6,820 KB
testcase_47 AC 1 ms
6,820 KB
testcase_48 AC 1 ms
6,820 KB
testcase_49 AC 1 ms
6,820 KB
testcase_50 AC 1 ms
6,820 KB
testcase_51 AC 1 ms
6,816 KB
testcase_52 AC 1 ms
6,820 KB
testcase_53 AC 1 ms
6,816 KB
testcase_54 AC 1 ms
6,816 KB
testcase_55 AC 1 ms
6,820 KB
testcase_56 AC 1 ms
6,816 KB
testcase_57 AC 1 ms
6,816 KB
testcase_58 AC 1 ms
6,816 KB
testcase_59 AC 1 ms
6,820 KB
testcase_60 AC 1 ms
6,820 KB
testcase_61 AC 1 ms
6,816 KB
testcase_62 AC 1 ms
6,816 KB
testcase_63 AC 1 ms
6,820 KB
testcase_64 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#![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;
                }

                match pos_to_val.range(p1 + 1..).next() {
                    Some((&p2, &v2)) => {
                        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;
                    }
                }
            }
            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())
            }
        }
    }
}
0