結果
問題 | No.1868 Teleporting Cyanmond |
ユーザー | tenten |
提出日時 | 2024-07-29 18:10:34 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 273 ms / 2,000 ms |
コード長 | 2,046 bytes |
コンパイル時間 | 2,772 ms |
コンパイル使用メモリ | 79,688 KB |
実行使用メモリ | 58,508 KB |
最終ジャッジ日時 | 2024-07-29 18:10:45 |
合計ジャッジ時間 | 10,565 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
50,184 KB |
testcase_01 | AC | 55 ms
50,208 KB |
testcase_02 | AC | 55 ms
50,372 KB |
testcase_03 | AC | 252 ms
58,508 KB |
testcase_04 | AC | 231 ms
56,468 KB |
testcase_05 | AC | 101 ms
51,524 KB |
testcase_06 | AC | 128 ms
54,032 KB |
testcase_07 | AC | 194 ms
55,520 KB |
testcase_08 | AC | 161 ms
55,616 KB |
testcase_09 | AC | 174 ms
55,676 KB |
testcase_10 | AC | 223 ms
56,244 KB |
testcase_11 | AC | 71 ms
51,380 KB |
testcase_12 | AC | 148 ms
54,564 KB |
testcase_13 | AC | 178 ms
55,396 KB |
testcase_14 | AC | 254 ms
56,252 KB |
testcase_15 | AC | 197 ms
56,068 KB |
testcase_16 | AC | 106 ms
51,828 KB |
testcase_17 | AC | 139 ms
53,968 KB |
testcase_18 | AC | 246 ms
56,272 KB |
testcase_19 | AC | 268 ms
56,304 KB |
testcase_20 | AC | 271 ms
56,264 KB |
testcase_21 | AC | 273 ms
56,228 KB |
testcase_22 | AC | 268 ms
56,348 KB |
testcase_23 | AC | 261 ms
56,264 KB |
testcase_24 | AC | 272 ms
56,300 KB |
testcase_25 | AC | 242 ms
56,228 KB |
testcase_26 | AC | 242 ms
56,312 KB |
testcase_27 | AC | 266 ms
56,408 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(); int[] rights = new int[n - 1]; for (int i = 0; i < n - 1; i++) { rights[i] = sc.nextInt() - 1; } Deque<Path> deq = new ArrayDeque<>(); deq.add(new Path(0, 0)); int[] costs = new int[n]; Arrays.fill(costs, Integer.MAX_VALUE); while (deq.size() > 0) { Path p = deq.poll(); if (costs[p.idx] <= p.value) { continue; } costs[p.idx] = p.value; if (p.idx > 0) { deq.addFirst(new Path(p.idx - 1, p.value)); } if (p.idx < n - 1) { deq.addLast(new Path(rights[p.idx], p.value + 1)); } } System.out.println(costs[n - 1]); } static class Path { int idx; int value; public Path(int idx, int value) { this.idx = idx; this.value = 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(); } } }