結果
問題 | No.340 雪の足跡 |
ユーザー | tenten |
提出日時 | 2020-12-29 02:42:43 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,822 bytes |
コンパイル時間 | 2,188 ms |
コンパイル使用メモリ | 78,772 KB |
実行使用メモリ | 78,092 KB |
最終ジャッジ日時 | 2024-10-04 10:16:56 |
合計ジャッジ時間 | 19,336 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
50,164 KB |
testcase_01 | AC | 50 ms
49,900 KB |
testcase_02 | AC | 47 ms
49,916 KB |
testcase_03 | AC | 49 ms
50,324 KB |
testcase_04 | AC | 50 ms
50,092 KB |
testcase_05 | AC | 50 ms
50,176 KB |
testcase_06 | AC | 50 ms
50,556 KB |
testcase_07 | AC | 50 ms
50,068 KB |
testcase_08 | AC | 49 ms
50,400 KB |
testcase_09 | AC | 47 ms
49,936 KB |
testcase_10 | AC | 46 ms
50,208 KB |
testcase_11 | AC | 87 ms
51,756 KB |
testcase_12 | AC | 85 ms
51,440 KB |
testcase_13 | AC | 87 ms
51,708 KB |
testcase_14 | AC | 248 ms
57,000 KB |
testcase_15 | AC | 259 ms
57,020 KB |
testcase_16 | AC | 213 ms
56,544 KB |
testcase_17 | AC | 291 ms
57,304 KB |
testcase_18 | AC | 277 ms
57,424 KB |
testcase_19 | AC | 286 ms
57,604 KB |
testcase_20 | AC | 781 ms
69,204 KB |
testcase_21 | AC | 482 ms
58,476 KB |
testcase_22 | AC | 109 ms
64,172 KB |
testcase_23 | WA | - |
testcase_24 | AC | 580 ms
65,280 KB |
testcase_25 | AC | 824 ms
73,648 KB |
testcase_26 | AC | 251 ms
57,080 KB |
testcase_27 | AC | 130 ms
53,840 KB |
testcase_28 | AC | 287 ms
57,276 KB |
testcase_29 | AC | 975 ms
65,772 KB |
testcase_30 | AC | 854 ms
63,964 KB |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
ソースコード
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[][] ver = new int[h + 1][w + 1]; int[][] hor = new int[h + 1][w + 1]; int n = Integer.parseInt(first[2]); 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 x = Integer.parseInt(line[j + 1]); int min = Math.min(prev, x); int max = Math.max(prev, x); if (max - min >= w) { ver[min / w][min % w]++; ver[max / w + 1][max % w]--; } else { hor[min / w][min % w]++; hor[max / w][max % w + 1]--; } prev = x; } } for (int i = 0; i < h; i++) { for (int j = 1; j < w; j++) { hor[i][j] += hor[i][j - 1]; } } for (int i = 0; i < w; i++) { for (int j = 1; j < h; j++) { ver[j][i] += ver[j - 1][i]; } } PriorityQueue<Path> queue = new PriorityQueue<>(); queue.add(new Path(0, 0, 0)); int[][] costs = new int[h][w]; for (int[] arr : costs) { Arrays.fill(arr, Integer.MAX_VALUE); } while (queue.size() > 0) { Path p = queue.poll(); if (costs[p.r][p.c] <= p.value) { continue; } costs[p.r][p.c] = p.value; if (p.r > 0 && ver[p.r][p.c] > 0 && ver[p.r - 1][p.c] > 0 && costs[p.r - 1][p.c] == Integer.MAX_VALUE) { queue.add(new Path(p.r - 1, p.c, p.value + 1)); } if (p.r < h - 1 && ver[p.r][p.c] > 0 && ver[p.r + 1][p.c] > 0 && costs[p.r + 1][p.c] == Integer.MAX_VALUE) { queue.add(new Path(p.r + 1, p.c, p.value + 1)); } if (p.c > 0 && hor[p.r][p.c] > 0 && hor[p.r][p.c - 1] > 0 && costs[p.r][p.c - 1] == Integer.MAX_VALUE) { queue.add(new Path(p.r, p.c - 1, p.value + 1)); } if (p.c < w - 1 && hor[p.r][p.c] > 0 && hor[p.r][p.c + 1] > 0 && costs[p.r][p.c + 1] == Integer.MAX_VALUE) { queue.add(new Path(p.r, p.c + 1, p.value + 1)); } } if (costs[h - 1][w - 1] == Integer.MAX_VALUE) { System.out.println("Odekakedekinai.."); } else { System.out.println(costs[h - 1][w - 1]); } } static class Path implements Comparable<Path> { int r; int c; int value; public Path(int r, int c, int value) { this.r = r; this.c = c; this.value = value; } public int compareTo(Path another) { return value - another.value; } } }