結果

問題 No.1373 Directed Operations
ユーザー phsplsphspls
提出日時 2022-10-07 23:56:28
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 991 bytes
コンパイル時間 15,132 ms
コンパイル使用メモリ 403,168 KB
実行使用メモリ 14,844 KB
最終ジャッジ日時 2024-06-12 22:18:42
合計ジャッジ時間 18,098 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 136 ms
6,940 KB
testcase_03 AC 15 ms
6,944 KB
testcase_04 AC 9 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 194 ms
14,844 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 21 ms
6,944 KB
testcase_09 AC 47 ms
14,460 KB
testcase_10 AC 49 ms
12,816 KB
testcase_11 AC 11 ms
6,940 KB
testcase_12 AC 28 ms
9,036 KB
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 175 ms
10,076 KB
testcase_15 AC 151 ms
9,000 KB
testcase_16 AC 176 ms
9,944 KB
testcase_17 AC 111 ms
6,940 KB
testcase_18 AC 64 ms
6,940 KB
testcase_19 AC 74 ms
6,984 KB
testcase_20 AC 104 ms
9,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::{BTreeSet, BTreeMap};


fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n: usize = n.trim().parse().unwrap();
    let mut a = String::new();
    std::io::stdin().read_line(&mut a).ok();
    let a: Vec<usize> = a.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();

    let mut points = (1..n).collect::<BTreeSet<usize>>();
    let mut amap = BTreeMap::new();
    for i in 0..n-1 { amap.entry(a[i]).or_insert(vec![]).push(i); }
    let mut result = vec![0usize; n-1];
    for (&span, ps) in amap.iter().rev() {
        for i in 0..ps.len() {
            let nextp = points.range(span..).nth(0);
            if let Some(&np) = nextp {
                result[ps[i]] = np - span;
                points.remove(&np);
            } else {
                println!("NO");
                return;
            }
        }
    }
    println!("YES");
    for &v in result.iter() {
        println!("{}", v + 1);
    }
}
0