結果
問題 | No.340 雪の足跡 |
ユーザー | code-devo |
提出日時 | 2016-01-30 04:16:10 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,431 bytes |
コンパイル時間 | 2,948 ms |
コンパイル使用メモリ | 87,952 KB |
実行使用メモリ | 118,112 KB |
最終ジャッジ日時 | 2024-09-21 19:00:12 |
合計ジャッジ時間 | 8,996 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 147 ms
61,516 KB |
testcase_01 | AC | 144 ms
54,216 KB |
testcase_02 | AC | 135 ms
54,104 KB |
testcase_03 | AC | 141 ms
54,444 KB |
testcase_04 | AC | 136 ms
54,044 KB |
testcase_05 | AC | 138 ms
54,356 KB |
testcase_06 | AC | 149 ms
54,152 KB |
testcase_07 | AC | 138 ms
54,276 KB |
testcase_08 | AC | 139 ms
54,004 KB |
testcase_09 | AC | 143 ms
54,316 KB |
testcase_10 | AC | 143 ms
53,708 KB |
testcase_11 | AC | 359 ms
60,060 KB |
testcase_12 | AC | 320 ms
58,076 KB |
testcase_13 | AC | 384 ms
62,100 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
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 | -- | - |
ソースコード
// とりあえず、01_small_00.txt を通す。 import java.util.HashMap; import java.util.HashSet; import java.util.LinkedList; import java.util.Map; import java.util.Queue; import java.util.Scanner; import java.util.Set; public class Main { public static void main(String... args) throws Exception { Scanner sc = new Scanner(System.in); int w = sc.nextInt(); int h = sc.nextInt(); int n = sc.nextInt(); Map<Integer, Set<Integer>> map = new HashMap<>(); while (sc.hasNextInt()) { int m = sc.nextInt(); int b = sc.nextInt(); for (int i = 0; i < m; i++) { int bTo = sc.nextInt(); int offset; if (bTo >= b + w) { offset = w; } else if (bTo > b) { offset = 1; } else if (bTo <= b - w) { offset = -w; } else { offset = -1; } while (b != bTo) { map.computeIfAbsent(b, x -> new HashSet()); map.get(b).add(b + offset); map.computeIfAbsent(b + offset, x -> new HashSet()); map.get(b + offset).add(b); b += offset; } } } Queue<Point> queue = new LinkedList<>(); queue.add(new Point(0, 0)); Set<Integer> visited = new HashSet<>(); visited.add(0); Point point; while ((point = queue.poll()) != null) { if (point.index == w * h - 1) { System.out.println(point.move); System.exit(0); } Set<Integer> indexesTo = map.get(point.index); if (indexesTo != null) { for (Integer indexTo : indexesTo) { if (!visited.contains(indexTo)) { visited.add(indexTo); queue.add(new Point(indexTo, point.move + 1)); } } } } System.out.println("Odekakedekinai.."); } } class Point { final int index; final int move; Point(int index, int move) { this.index = index; this.move = move; } @Override public String toString() { return String.format("index: %d, move: %d", index, move); } }