結果
問題 | No.1572 XI |
ユーザー | tenten |
提出日時 | 2023-04-12 13:19:37 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 4,524 bytes |
コンパイル時間 | 3,352 ms |
コンパイル使用メモリ | 95,276 KB |
実行使用メモリ | 120,712 KB |
最終ジャッジ日時 | 2024-10-08 11:35:43 |
合計ジャッジ時間 | 29,690 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
42,592 KB |
testcase_01 | AC | 58 ms
37,076 KB |
testcase_02 | AC | 55 ms
37,092 KB |
testcase_03 | AC | 54 ms
37,164 KB |
testcase_04 | AC | 973 ms
61,192 KB |
testcase_05 | AC | 1,792 ms
92,548 KB |
testcase_06 | TLE | - |
testcase_07 | AC | 159 ms
45,080 KB |
testcase_08 | AC | 1,753 ms
83,144 KB |
testcase_09 | AC | 1,026 ms
63,072 KB |
testcase_10 | AC | 1,456 ms
70,584 KB |
testcase_11 | AC | 219 ms
47,448 KB |
testcase_12 | AC | 806 ms
56,264 KB |
testcase_13 | AC | 284 ms
48,404 KB |
testcase_14 | AC | 828 ms
55,944 KB |
testcase_15 | AC | 237 ms
47,964 KB |
testcase_16 | AC | 677 ms
54,416 KB |
testcase_17 | AC | 158 ms
44,416 KB |
testcase_18 | AC | 917 ms
60,956 KB |
testcase_19 | AC | 1,911 ms
94,220 KB |
testcase_20 | AC | 1,302 ms
67,368 KB |
testcase_21 | TLE | - |
testcase_22 | AC | 1,767 ms
80,036 KB |
testcase_23 | AC | 143 ms
44,248 KB |
testcase_24 | AC | 50 ms
37,020 KB |
testcase_25 | AC | 51 ms
37,248 KB |
testcase_26 | AC | 52 ms
37,204 KB |
testcase_27 | AC | 50 ms
37,020 KB |
testcase_28 | AC | 52 ms
37,348 KB |
testcase_29 | AC | 51 ms
37,120 KB |
testcase_30 | AC | 54 ms
37,164 KB |
testcase_31 | AC | 51 ms
37,268 KB |
testcase_32 | AC | 51 ms
36,804 KB |
testcase_33 | AC | 52 ms
36,940 KB |
testcase_34 | TLE | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
ソースコード
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 h = sc.nextInt(); int w = sc.nextInt(); int srr = sc.nextInt() - 1; int scc = sc.nextInt() - 1; int grr = sc.nextInt() - 1; int gcc = sc.nextInt() - 1; char[][] field = new char[h][]; for (int i = 0; i < h; i++) { field[i] = sc.next().toCharArray(); } PriorityQueue<Path> queue = new PriorityQueue<>(); queue.add(new Path(srr, scc, 0, 0)); int[][][] costs = new int[h][w][6]; for (int[][] arr1 : costs) { for (int[] arr2 : arr1) { Arrays.fill(arr2, Integer.MAX_VALUE); } } while (queue.size() > 0) { Path p = queue.poll(); if (costs[p.r][p.c][p.type] <= p.value || field[p.r][p.c] == '#') { continue; } costs[p.r][p.c][p.type] = p.value; if (p.r > 0) { queue.add(p.add(-1, 0)); } if (p.r < h - 1) { queue.add(p.add(1, 0)); } if (p.c > 0) { queue.add(p.add(0, -1)); } if (p.c < w - 1) { queue.add(p.add(0, 1)); } } if (costs[grr][gcc][0] == Integer.MAX_VALUE) { System.out.println(-1); } else { System.out.println(costs[grr][gcc][0]); } } static class Path implements Comparable<Path> { int r; int c; int type; int value; public Path(int r, int c, int type, int value) { this.r = r; this.c = c; this.type = type; this.value = value; } public int compareTo(Path another) { return value - another.value; } public Path add(int x, int y) { int next; if (x == -1) { if (type < 4) { next = (type + 3) % 4; } else { next = type; } } else if (x == 1) { if (type < 4) { next = (type + 1) % 4; } else { next = type; } } else if (y == -1) { if (type == 1 || type == 3) { next = type; } else if (type == 0) { next = 4; } else if (type == 2) { next = 5; } else if (type == 4) { next = 2; } else { next = 0; } } else { if (type == 1 || type == 3) { next = type; } else if (type == 0) { next = 5; } else if (type == 2) { next = 4; } else if (type == 4) { next = 0; } else { next = 2; } } return new Path(r + x, c + y, next, value + 1); } } } 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(); } }