結果

問題 No.1373 Directed Operations
ユーザー ks2mks2m
提出日時 2021-02-05 21:32:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 385 ms / 2,000 ms
コード長 947 bytes
コンパイル時間 3,133 ms
コンパイル使用メモリ 80,488 KB
実行使用メモリ 63,780 KB
最終ジャッジ日時 2024-07-02 11:44:19
合計ジャッジ時間 8,137 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
50,796 KB
testcase_01 AC 59 ms
50,680 KB
testcase_02 AC 310 ms
63,664 KB
testcase_03 AC 179 ms
63,656 KB
testcase_04 AC 231 ms
63,112 KB
testcase_05 AC 57 ms
50,396 KB
testcase_06 AC 362 ms
63,780 KB
testcase_07 AC 88 ms
51,804 KB
testcase_08 AC 146 ms
54,896 KB
testcase_09 AC 294 ms
62,872 KB
testcase_10 AC 241 ms
60,752 KB
testcase_11 AC 150 ms
54,576 KB
testcase_12 AC 201 ms
60,788 KB
testcase_13 AC 107 ms
52,396 KB
testcase_14 AC 385 ms
63,392 KB
testcase_15 AC 341 ms
63,156 KB
testcase_16 AC 371 ms
63,580 KB
testcase_17 AC 263 ms
60,340 KB
testcase_18 AC 196 ms
57,440 KB
testcase_19 AC 244 ms
58,808 KB
testcase_20 AC 285 ms
61,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.PriorityQueue;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		Obj[] arr = new Obj[n - 1];
		PriorityQueue<Obj> que = new PriorityQueue<>((o1, o2) -> o1.a - o2.a);
		for (int i = 0; i < n - 1; i++) {
			Obj o = new Obj();
			o.i = i;
			o.a = Integer.parseInt(sa[i]);
			arr[i] = o;
			que.add(o);
		}
		br.close();

		for (int i = 1; i < n; i++) {
			Obj o = que.poll();
			if (o.a > i) {
				System.out.println("NO");
				return;
			}
			o.ans = i - o.a + 1;
		}
		PrintWriter pw = new PrintWriter(System.out);
		pw.println("YES");
		for (Obj o : arr) {
			pw.println(o.ans);
		}
		pw.flush();
	}

	static class Obj {
		int i, a, ans;
	}
}
0