結果
問題 | No.1373 Directed Operations |
ユーザー | tenten |
提出日時 | 2024-07-25 17:25:30 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 416 ms / 2,000 ms |
コード長 | 2,007 bytes |
コンパイル時間 | 2,601 ms |
コンパイル使用メモリ | 84,776 KB |
実行使用メモリ | 63,464 KB |
最終ジャッジ日時 | 2024-07-25 17:25:41 |
合計ジャッジ時間 | 9,940 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 65 ms
51,036 KB |
testcase_01 | AC | 51 ms
50,356 KB |
testcase_02 | AC | 306 ms
63,464 KB |
testcase_03 | AC | 170 ms
58,760 KB |
testcase_04 | AC | 194 ms
57,892 KB |
testcase_05 | AC | 65 ms
51,224 KB |
testcase_06 | AC | 401 ms
63,292 KB |
testcase_07 | AC | 93 ms
52,056 KB |
testcase_08 | AC | 155 ms
56,252 KB |
testcase_09 | AC | 302 ms
58,608 KB |
testcase_10 | AC | 227 ms
58,628 KB |
testcase_11 | AC | 155 ms
54,856 KB |
testcase_12 | AC | 177 ms
57,564 KB |
testcase_13 | AC | 106 ms
52,064 KB |
testcase_14 | AC | 403 ms
63,168 KB |
testcase_15 | AC | 376 ms
63,320 KB |
testcase_16 | AC | 416 ms
63,108 KB |
testcase_17 | AC | 270 ms
60,840 KB |
testcase_18 | AC | 206 ms
58,872 KB |
testcase_19 | AC | 256 ms
57,420 KB |
testcase_20 | AC | 305 ms
56,876 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); PriorityQueue<Unit> units = new PriorityQueue<>(); for (int i = 0; i < n - 1; i++) { units.add(new Unit(i, sc.nextInt())); } int[] ans = new int[n - 1]; for (int i = 2; i <= n; i++) { Unit x = units.poll(); if (x.value >= i) { System.out.println("NO"); return; } ans[x.idx] = i - x.value; } System.out.println("YES"); System.out.println(Arrays.stream(ans).mapToObj(String::valueOf).collect(Collectors.joining("\n"))); } static class Unit implements Comparable<Unit> { int idx; int value; public Unit(int idx, int value) { this.idx = idx; this.value = value; } public int compareTo(Unit another) { return value - another.value; } } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }