結果
問題 | No.1868 Teleporting Cyanmond |
ユーザー | tenten |
提出日時 | 2023-02-24 08:15:08 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 325 ms / 2,000 ms |
コード長 | 2,485 bytes |
コンパイル時間 | 2,895 ms |
コンパイル使用メモリ | 89,656 KB |
実行使用メモリ | 48,424 KB |
最終ジャッジ日時 | 2024-07-26 12:19:33 |
合計ジャッジ時間 | 10,380 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
42,936 KB |
testcase_01 | AC | 54 ms
37,184 KB |
testcase_02 | AC | 54 ms
37,164 KB |
testcase_03 | AC | 325 ms
48,424 KB |
testcase_04 | AC | 246 ms
46,592 KB |
testcase_05 | AC | 96 ms
39,424 KB |
testcase_06 | AC | 144 ms
41,268 KB |
testcase_07 | AC | 216 ms
45,244 KB |
testcase_08 | AC | 180 ms
44,044 KB |
testcase_09 | AC | 205 ms
44,916 KB |
testcase_10 | AC | 262 ms
46,780 KB |
testcase_11 | AC | 74 ms
38,368 KB |
testcase_12 | AC | 162 ms
42,648 KB |
testcase_13 | AC | 205 ms
44,824 KB |
testcase_14 | AC | 269 ms
45,684 KB |
testcase_15 | AC | 240 ms
44,944 KB |
testcase_16 | AC | 117 ms
40,016 KB |
testcase_17 | AC | 149 ms
41,800 KB |
testcase_18 | AC | 300 ms
46,064 KB |
testcase_19 | AC | 296 ms
45,828 KB |
testcase_20 | AC | 270 ms
45,620 KB |
testcase_21 | AC | 263 ms
45,728 KB |
testcase_22 | AC | 301 ms
45,992 KB |
testcase_23 | AC | 256 ms
45,832 KB |
testcase_24 | AC | 258 ms
45,844 KB |
testcase_25 | AC | 288 ms
45,992 KB |
testcase_26 | AC | 263 ms
45,912 KB |
testcase_27 | AC | 253 ms
45,740 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int[] teleports = new int[n]; for (int i = 0; i < n - 1; i++) { teleports[i] = sc.nextInt() - 1; } PriorityQueue<Path> queue = new PriorityQueue<>(); int[] costs = new int[n]; Arrays.fill(costs, Integer.MAX_VALUE); queue.add(new Path(0, 0)); while (queue.size() > 0) { Path p = queue.poll(); if (costs[p.idx] <= p.value) { continue; } costs[p.idx] = p.value; queue.add(new Path(teleports[p.idx], p.value + 1)); if (p.idx > 0) { queue.add(new Path(p.idx - 1, p.value)); } } System.out.println(costs[n - 1]); } static class Path implements Comparable<Path> { int idx; int value; public Path(int idx, int value) { this.idx = idx; this.value = value; } public int compareTo(Path another) { return value - another.value; } } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }