結果
問題 | No.340 雪の足跡 |
ユーザー | code-devo |
提出日時 | 2016-01-30 04:00:29 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,455 bytes |
コンパイル時間 | 5,111 ms |
コンパイル使用メモリ | 90,852 KB |
実行使用メモリ | 97,792 KB |
最終ジャッジ日時 | 2024-09-21 19:00:02 |
合計ジャッジ時間 | 8,901 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 148 ms
54,380 KB |
testcase_01 | AC | 146 ms
54,436 KB |
testcase_02 | AC | 135 ms
54,028 KB |
testcase_03 | AC | 147 ms
54,356 KB |
testcase_04 | AC | 139 ms
53,860 KB |
testcase_05 | WA | - |
testcase_06 | AC | 150 ms
54,260 KB |
testcase_07 | AC | 138 ms
53,964 KB |
testcase_08 | AC | 139 ms
53,968 KB |
testcase_09 | AC | 146 ms
53,888 KB |
testcase_10 | AC | 142 ms
54,004 KB |
testcase_11 | AC | 358 ms
59,692 KB |
testcase_12 | AC | 317 ms
58,436 KB |
testcase_13 | AC | 375 ms
62,156 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 | -- | - |
ソースコード
// まずTLEとなるでしょう・・・ 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) { Set<Integer> indexesTo = map.get(point.index); if (indexesTo != null) { for (Integer indexTo : indexesTo) { if (indexTo == w * h - 1) { System.out.println(point.move + 1); System.exit(0); } 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); } }