結果

問題 No.1373 Directed Operations
ユーザー tentententen
提出日時 2021-02-06 13:31:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 828 ms / 2,000 ms
コード長 1,136 bytes
コンパイル時間 2,386 ms
コンパイル使用メモリ 77,984 KB
実行使用メモリ 51,488 KB
最終ジャッジ日時 2024-07-02 21:39:21
合計ジャッジ時間 15,393 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,032 KB
testcase_01 AC 130 ms
41,160 KB
testcase_02 AC 647 ms
50,784 KB
testcase_03 AC 572 ms
50,444 KB
testcase_04 AC 527 ms
50,324 KB
testcase_05 AC 130 ms
41,140 KB
testcase_06 AC 816 ms
51,248 KB
testcase_07 AC 217 ms
43,700 KB
testcase_08 AC 306 ms
47,560 KB
testcase_09 AC 802 ms
51,488 KB
testcase_10 AC 749 ms
50,696 KB
testcase_11 AC 381 ms
48,668 KB
testcase_12 AC 692 ms
50,340 KB
testcase_13 AC 305 ms
48,552 KB
testcase_14 AC 828 ms
51,432 KB
testcase_15 AC 775 ms
50,768 KB
testcase_16 AC 800 ms
51,356 KB
testcase_17 AC 658 ms
50,584 KB
testcase_18 AC 471 ms
49,136 KB
testcase_19 AC 578 ms
49,428 KB
testcase_20 AC 588 ms
49,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        Idx[] idxes = new Idx[n - 1];
        for (int i = 0; i < n - 1; i++) {
            idxes[i] = new Idx(i, sc.nextInt());
        }
        Arrays.sort(idxes);
        int[] ans = new int[n - 1];
        for (int i = 0; i < n - 1; i++) {
            if (idxes[i].value > i + 1) {
                System.out.println("NO");
                return;
            }
            ans[idxes[i].idx] = i + 2 - idxes[i].value;
        }
        StringBuilder sb = new StringBuilder();
        sb.append("YES").append("\n");
        for (int i = 0; i < n - 1; i++) {
            sb.append(ans[i]).append("\n");
        }
        System.out.print(sb);
    }
    
    static class Idx implements Comparable<Idx> {
        int idx;
        int value;
        
        public Idx(int idx, int value) {
            this.idx = idx;
            this.value = value;
        }
        
        public int compareTo(Idx another) {
            return value - another.value;
        }
    }
}
0