結果

問題 No.2740 Old Maid
ユーザー Yukino DX.Yukino DX.
提出日時 2024-04-27 15:49:02
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 1,949 bytes
コンパイル時間 25,575 ms
コンパイル使用メモリ 380,372 KB
実行使用メモリ 15,812 KB
最終ジャッジ日時 2024-11-15 19:17:33
合計ジャッジ時間 33,951 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
15,692 KB
testcase_01 AC 50 ms
15,684 KB
testcase_02 AC 50 ms
15,692 KB
testcase_03 AC 51 ms
15,624 KB
testcase_04 AC 51 ms
15,688 KB
testcase_05 AC 51 ms
15,812 KB
testcase_06 AC 50 ms
15,688 KB
testcase_07 AC 51 ms
15,688 KB
testcase_08 AC 49 ms
15,688 KB
testcase_09 AC 50 ms
15,692 KB
testcase_10 AC 46 ms
15,688 KB
testcase_11 AC 46 ms
15,688 KB
testcase_12 AC 50 ms
11,700 KB
testcase_13 AC 51 ms
12,484 KB
testcase_14 AC 10 ms
5,248 KB
testcase_15 AC 14 ms
5,248 KB
testcase_16 AC 35 ms
9,200 KB
testcase_17 AC 10 ms
5,248 KB
testcase_18 AC 49 ms
12,008 KB
testcase_19 AC 19 ms
5,888 KB
testcase_20 AC 60 ms
13,628 KB
testcase_21 AC 12 ms
5,248 KB
testcase_22 AC 33 ms
8,992 KB
testcase_23 AC 7 ms
5,248 KB
testcase_24 AC 18 ms
5,532 KB
testcase_25 AC 65 ms
14,276 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 5 ms
5,248 KB
testcase_28 AC 35 ms
9,264 KB
testcase_29 AC 33 ms
8,836 KB
testcase_30 AC 3 ms
5,248 KB
testcase_31 AC 71 ms
15,460 KB
testcase_32 AC 22 ms
6,616 KB
testcase_33 AC 69 ms
14,820 KB
testcase_34 AC 33 ms
8,752 KB
testcase_35 AC 19 ms
5,504 KB
testcase_36 AC 20 ms
5,888 KB
testcase_37 AC 26 ms
7,556 KB
testcase_38 AC 15 ms
5,312 KB
testcase_39 AC 9 ms
5,248 KB
testcase_40 AC 41 ms
10,368 KB
testcase_41 AC 57 ms
13,380 KB
testcase_42 AC 1 ms
5,248 KB
testcase_43 AC 1 ms
5,248 KB
testcase_44 AC 1 ms
5,248 KB
testcase_45 AC 1 ms
5,248 KB
testcase_46 AC 1 ms
5,248 KB
testcase_47 AC 1 ms
5,248 KB
testcase_48 AC 1 ms
5,248 KB
testcase_49 AC 1 ms
5,248 KB
testcase_50 AC 1 ms
5,248 KB
testcase_51 AC 1 ms
5,248 KB
testcase_52 AC 1 ms
5,248 KB
testcase_53 AC 1 ms
5,248 KB
testcase_54 AC 1 ms
5,248 KB
testcase_55 AC 1 ms
5,248 KB
testcase_56 AC 1 ms
5,248 KB
testcase_57 AC 0 ms
5,248 KB
testcase_58 AC 1 ms
5,248 KB
testcase_59 AC 1 ms
5,248 KB
testcase_60 AC 1 ms
5,248 KB
testcase_61 AC 1 ms
5,248 KB
testcase_62 AC 1 ms
5,248 KB
testcase_63 AC 1 ms
5,248 KB
testcase_64 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(unused_imports)]
//use itertools::{iproduct, Itertools};
use proconio::input;
use proconio::marker::*;
use std::collections::*;

fn main() {
    input! {
        n:usize,
        p:[Usize1;n],
    }

    let mut nexts = vec![None; n];
    let mut prevs = vec![None; n];
    for i in 0..n {
        if i != n - 1 {
            nexts[p[i]] = Some(p[i + 1]);
        }
        if i != 0 {
            prevs[p[i]] = Some(p[i - 1]);
        }
    }

    let mut rem = (0..n).collect::<BTreeSet<_>>();
    let mut ans = vec![];
    while !rem.is_empty() {
        let fst = *rem.first().unwrap();
        if let Some(nxt) = nexts[fst] {
            ans.push(fst);
            ans.push(nxt);
            match (prevs[fst], nexts[nxt]) {
                (Some(pre), Some(nnxt)) => {
                    nexts[pre] = Some(nnxt);
                    prevs[nnxt] = Some(pre);
                }
                (Some(pre), None) => {
                    nexts[pre] = None;
                }
                (None, Some(nnxt)) => {
                    prevs[nnxt] = None;
                }
                _ => (),
            }

            rem.remove(&fst);
            rem.remove(&nxt);
            continue;
        }

        let scn = *rem.iter().nth(1).unwrap();
        if let Some(nxt) = nexts[scn] {
            ans.push(scn);
            ans.push(nxt);

            match (prevs[scn], nexts[nxt]) {
                (Some(pre), Some(nnxt)) => {
                    nexts[pre] = Some(nnxt);
                    prevs[nnxt] = Some(pre);
                }
                (Some(pre), None) => {
                    nexts[pre] = None;
                }
                (None, Some(nnxt)) => {
                    prevs[nnxt] = None;
                }
                _ => (),
            }

            rem.remove(&scn);
            rem.remove(&nxt);
        }
    }

    for i in 0..n {
        print!("{} ", ans[i] + 1);
    }
    println!();
}
0