結果
| 問題 | No.323 yuki国 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-09-23 13:46:31 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,295 bytes |
| 記録 | |
| コンパイル時間 | 159 ms |
| コンパイル使用メモリ | 76,800 KB |
| 実行使用メモリ | 78,216 KB |
| 最終ジャッジ日時 | 2024-11-17 17:39:00 |
| 合計ジャッジ時間 | 3,407 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 6 |
| other | AC * 23 WA * 9 |
ソースコード
H, W = map(int, raw_input().split())
A, Sr, Sc = map(int, raw_input().split())
B, Gr, Gc = map(int, raw_input().split())
if (abs(Sr-Gr)+abs(Sc-Gc))%2 != abs(A-B)%2:
print 'No'
exit()
board = [raw_input() for _ in xrange(H)]
dr = [0, 0, 1, -1]
dc = [1, -1, 0, 0]
goals = set()
for i in xrange(H):
for j in xrange(W):
if (i, j) in goals:
continue
if board[i][j] == '.':
continue
for k in xrange(4):
nr, nc = i+dr[k], j+dr[k]
if 0 <= nr < H and 0 <= nc < W and board[nr][nc] == '*':
goals.add((i, j))
goals.add((nr, nc))
reachable = {}
stack = [((Sr, Sc), A)]
while len(stack) > 0:
node, size = stack.pop()
if node in goals and size >= 1:
print 'Yes'
exit()
if node in reachable and reachable[node] >= size:
continue
reachable[node] = size
for i in xrange(4):
nr, nc = node[0]+dr[i], node[1]+dc[i]
if nr < 0 or nr >= H or nc < 0 or nc >= W:
continue
new_size = size + 1 if board[nr][nc] == '*' else size - 1
if new_size <= 0:
continue
if (nr, nc) in reachable and reachable[(nr, nc)] >= new_size:
continue
stack.append(((nr, nc), new_size))
print 'No'