結果

問題 No.1373 Directed Operations
ユーザー tonyu0tonyu0
提出日時 2021-02-05 23:30:22
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 868 bytes
コンパイル時間 11,403 ms
コンパイル使用メモリ 387,924 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-02 14:36:16
合計ジャッジ時間 14,100 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 123 ms
6,812 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 5 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 132 ms
6,940 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 16 ms
6,940 KB
testcase_09 AC 18 ms
6,944 KB
testcase_10 AC 16 ms
6,940 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 16 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 131 ms
6,944 KB
testcase_15 AC 115 ms
6,948 KB
testcase_16 AC 127 ms
6,940 KB
testcase_17 AC 97 ms
6,940 KB
testcase_18 AC 54 ms
6,944 KB
testcase_19 AC 51 ms
6,944 KB
testcase_20 AC 71 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::*;

fn main() {
    let mut s: String = String::new();
    std::io::stdin().read_to_string(&mut s).ok();
    let mut itr = s.trim().split_whitespace();
    let n: usize = itr.next().unwrap().parse().unwrap();
    let a: Vec<usize> = (0..n - 1)
        .map(|_| itr.next().unwrap().parse().unwrap())
        .collect();
    let mut b = Vec::new();
    for i in 0..n - 1 {
        b.push((a[i], i));
    }
    b.sort();
    let mut ans = vec![0; n - 1];
    let mut now = 1;
    let mut ok = true;
    for &(v, i) in b.iter() {
        // v-1 >
        if now > v - 1 {
            ans[i] = now - (v - 1);
            now += 1;
        } else {
            ok = false;
            break;
        }
    }
    if ok {
        println!("YES");
        for &b in ans.iter() {
            println!("{}", b);
        }
    } else {
        println!("NO")
    }
}
0