結果
問題 | No.1572 XI |
ユーザー | tenten |
提出日時 | 2023-04-12 13:21:37 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 4,644 bytes |
コンパイル時間 | 3,163 ms |
コンパイル使用メモリ | 95,424 KB |
実行使用メモリ | 135,224 KB |
最終ジャッジ日時 | 2024-10-08 11:38:46 |
合計ジャッジ時間 | 56,965 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
42,468 KB |
testcase_01 | AC | 54 ms
37,248 KB |
testcase_02 | AC | 55 ms
36,804 KB |
testcase_03 | AC | 56 ms
36,868 KB |
testcase_04 | AC | 794 ms
61,548 KB |
testcase_05 | AC | 1,421 ms
81,508 KB |
testcase_06 | AC | 1,638 ms
89,468 KB |
testcase_07 | AC | 147 ms
44,708 KB |
testcase_08 | AC | 1,294 ms
82,564 KB |
testcase_09 | AC | 775 ms
63,024 KB |
testcase_10 | AC | 1,204 ms
69,720 KB |
testcase_11 | AC | 200 ms
48,084 KB |
testcase_12 | AC | 621 ms
56,040 KB |
testcase_13 | AC | 257 ms
48,824 KB |
testcase_14 | AC | 741 ms
55,616 KB |
testcase_15 | AC | 214 ms
48,588 KB |
testcase_16 | AC | 559 ms
54,068 KB |
testcase_17 | AC | 143 ms
44,204 KB |
testcase_18 | AC | 759 ms
61,152 KB |
testcase_19 | AC | 1,484 ms
84,396 KB |
testcase_20 | AC | 1,124 ms
67,188 KB |
testcase_21 | AC | 1,711 ms
89,884 KB |
testcase_22 | AC | 1,375 ms
80,472 KB |
testcase_23 | AC | 134 ms
43,132 KB |
testcase_24 | AC | 53 ms
36,992 KB |
testcase_25 | AC | 53 ms
37,224 KB |
testcase_26 | AC | 54 ms
37,296 KB |
testcase_27 | AC | 54 ms
37,284 KB |
testcase_28 | AC | 55 ms
36,916 KB |
testcase_29 | AC | 54 ms
37,284 KB |
testcase_30 | AC | 55 ms
37,316 KB |
testcase_31 | AC | 54 ms
37,168 KB |
testcase_32 | AC | 55 ms
37,356 KB |
testcase_33 | AC | 55 ms
37,120 KB |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | TLE | - |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | TLE | - |
testcase_45 | TLE | - |
testcase_46 | TLE | - |
testcase_47 | AC | 322 ms
108,884 KB |
testcase_48 | TLE | - |
ソースコード
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 && field[p.r - 1][p.c] == '.') { queue.add(p.add(-1, 0)); } if (p.r < h - 1 && field[p.r + 1][p.c] == '.') { queue.add(p.add(1, 0)); } if (p.c > 0 && field[p.r][p.c - 1] == '.') { queue.add(p.add(0, -1)); } if (p.c < w - 1 && field[p.r][p.c + 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(); } }