結果
問題 | No.340 雪の足跡 |
ユーザー | tenten |
提出日時 | 2020-10-03 19:16:08 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,699 bytes |
コンパイル時間 | 2,369 ms |
コンパイル使用メモリ | 80,360 KB |
実行使用メモリ | 405,376 KB |
最終ジャッジ日時 | 2024-07-18 04:49:29 |
合計ジャッジ時間 | 14,381 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
44,340 KB |
testcase_01 | AC | 55 ms
37,436 KB |
testcase_02 | AC | 54 ms
40,612 KB |
testcase_03 | AC | 54 ms
36,892 KB |
testcase_04 | AC | 54 ms
37,172 KB |
testcase_05 | AC | 54 ms
37,468 KB |
testcase_06 | AC | 54 ms
37,208 KB |
testcase_07 | AC | 55 ms
37,324 KB |
testcase_08 | AC | 54 ms
37,332 KB |
testcase_09 | AC | 55 ms
42,692 KB |
testcase_10 | AC | 54 ms
37,040 KB |
testcase_11 | AC | 111 ms
40,156 KB |
testcase_12 | AC | 115 ms
40,444 KB |
testcase_13 | AC | 141 ms
41,304 KB |
testcase_14 | AC | 569 ms
78,312 KB |
testcase_15 | AC | 611 ms
80,196 KB |
testcase_16 | AC | 390 ms
59,088 KB |
testcase_17 | AC | 694 ms
85,292 KB |
testcase_18 | AC | 641 ms
87,716 KB |
testcase_19 | AC | 686 ms
85,908 KB |
testcase_20 | TLE | - |
testcase_21 | AC | 607 ms
47,768 KB |
testcase_22 | AC | 328 ms
130,084 KB |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
import java.util.*; import java.io.*; public class Main { public static void main (String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] first = br.readLine().split(" ", 3); int w = Integer.parseInt(first[0]); int h = Integer.parseInt(first[1]); int n = Integer.parseInt(first[2]); int size = w * h; int[][] hImos = new int[w][h]; int[][] wImos = new int[h][w]; for (int i = 0; i < n; i++) { int m = Integer.parseInt(br.readLine()); String[] line = br.readLine().split(" ", m + 1); int prev = Integer.parseInt(line[0]); for (int j = 0; j < m; j++) { int next = Integer.parseInt(line[j + 1]); if (prev / w == next / w) { int max = Math.max(prev, next); int min = Math.min(prev, next); wImos[min / w][min % w]++; wImos[max / w][max % w]--; } else { int max = Math.max(prev, next); int min = Math.min(prev, next); hImos[min % w][min / w]++; hImos[max % w][max / w]--; } prev = next; } } ArrayList<HashSet<Integer>> graph = new ArrayList<>(); for (int i = 0; i < size; i++) { graph.add(new HashSet<>()); } for (int i = 0; i < w; i++) { for (int j = 1; j < h; j++) { hImos[i][j] += hImos[i][j - 1]; if (hImos[i][j - 1] > 0) { graph.get(i + (j - 1) * w).add(i + j * w); graph.get(i + j * w).add(i + (j - 1) * w); } } } for (int i = 0; i < h; i++) { for (int j = 1; j < w; j++) { wImos[i][j] += wImos[i][j - 1]; if (wImos[i][j - 1] > 0) { graph.get(i * w + j - 1).add(i * w + j); graph.get(i * w + j).add(i * w + j - 1); } } } PriorityQueue<Path> queue = new PriorityQueue<>(); queue.add(new Path(0, 0)); int[] costs = new int[size]; Arrays.fill(costs, Integer.MAX_VALUE); while (queue.size() > 0) { Path p = queue.poll(); if (costs[p.idx] <= p.value) { continue; } costs[p.idx] = p.value; for (int x : graph.get(p.idx)) { queue.add(new Path(x, p.value + 1)); } } if (costs[size - 1] == Integer.MAX_VALUE) { System.out.println("Odekakedekinai.."); } else { System.out.println(costs[size - 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; } } }