結果
| 問題 | No.323 yuki国 |
| コンテスト | |
| ユーザー |
yn
|
| 提出日時 | 2016-06-11 16:50:48 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,000 bytes |
| 記録 | |
| コンパイル時間 | 432 ms |
| コンパイル使用メモリ | 82,104 KB |
| 実行使用メモリ | 137,844 KB |
| 最終ジャッジ日時 | 2024-10-09 12:53:36 |
| 合計ジャッジ時間 | 8,329 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 6 |
| other | AC * 1 WA * 1 TLE * 1 -- * 29 |
ソースコード
import heapq
h, w = map(int,input().split())
a, si, sj = map(int,input().split())
b, gi, gj = map(int,input().split())
m = [list(input()) for i in range(h)]
visited = [[[False] * 2500 for i in range(w)] for j in range(h)]
q = []
visited[si][sj][a] = True
heapq.heappush(q, (si, sj, a))
dx = [0, 1, 0,-1]
dy = [1, 0,-1, 0]
while len(q):
curi, curj, cursize = heapq.heappop(q)
for i in range(4):
nexti = curi + dx[i]
nextj = curj + dy[i]
if 0 <= nexti < h and 0 <= nextj < w:
pass
else:
continue
if m[nexti][nextj] == "*":
nextsize = cursize + 1
else:
nextsize = cursize - 1
if 0 <= nextsize < 2500:
pass
else:
continue
if not visited[nexti][nextj][nextsize]:
visited[nexti][nextj][nextsize] = True
heapq.heappush(q,(nexti, nextj, nextsize))
if visited[gi][gj][b]:
print("Yes")
else:
print("No")
yn