結果
問題 | No.424 立体迷路 |
ユーザー | はむ吉🐹 |
提出日時 | 2016-09-24 12:05:02 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 38 ms / 2,000 ms |
コード長 | 1,417 bytes |
コンパイル時間 | 128 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-07-05 07:09:45 |
合計ジャッジ時間 | 1,989 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,752 KB |
testcase_01 | AC | 31 ms
10,752 KB |
testcase_02 | AC | 31 ms
10,880 KB |
testcase_03 | AC | 31 ms
10,880 KB |
testcase_04 | AC | 31 ms
10,752 KB |
testcase_05 | AC | 31 ms
10,752 KB |
testcase_06 | AC | 29 ms
10,624 KB |
testcase_07 | AC | 32 ms
10,624 KB |
testcase_08 | AC | 32 ms
10,624 KB |
testcase_09 | AC | 29 ms
10,752 KB |
testcase_10 | AC | 30 ms
11,008 KB |
testcase_11 | AC | 31 ms
11,008 KB |
testcase_12 | AC | 30 ms
10,880 KB |
testcase_13 | AC | 30 ms
10,752 KB |
testcase_14 | AC | 30 ms
10,752 KB |
testcase_15 | AC | 30 ms
10,624 KB |
testcase_16 | AC | 30 ms
10,752 KB |
testcase_17 | AC | 30 ms
10,752 KB |
testcase_18 | AC | 29 ms
10,880 KB |
testcase_19 | AC | 29 ms
10,752 KB |
testcase_20 | AC | 30 ms
10,880 KB |
testcase_21 | AC | 29 ms
10,752 KB |
testcase_22 | AC | 29 ms
11,008 KB |
testcase_23 | AC | 28 ms
10,752 KB |
testcase_24 | AC | 38 ms
11,136 KB |
testcase_25 | AC | 37 ms
11,008 KB |
ソースコード
#!/usr/bin/env python3 import collections DELTA_1 = [(1, 0), (-1, 0), (0, 1), (0, -1)] def can_escape(height, width, start, goal, stage): def out_of_stage(r, c): return r < 0 or r >= height or c < 0 or c >= width visited = collections.defaultdict(bool) visited[start] = True q = collections.deque() q.append(start) while q: r0, c0 = q.popleft() if (r0, c0) == goal: return True for dr, dc in DELTA_1: r, c = r0 + dr, c0 + dc if out_of_stage(r, c): continue elif abs(stage[r][c] - stage[r0][c0]) <= 1 and not visited[(r, c)]: visited[(r, c)] = True q.append((r, c)) r2, c2 = r0 + 2 * dr, c0 + 2 * dc if out_of_stage(r2, c2): continue elif stage[r2][c2] == stage[r0][c0] > stage[r][c]: if not visited[(r2, c2)]: visited[(r2, c2)] = True q.append((r2, c2)) else: return False def main(): height, width = map(int, input().split()) sx, sy, gx, gy = map(lambda x: int(x) - 1, input().split()) start = sx, sy goal = gx, gy stage = [list(map(int, input())) for _ in range(height)] if can_escape(height, width, start, goal, stage): print("YES") else: print("NO") if __name__ == '__main__': main()