結果
| 問題 | 
                            No.424 立体迷路
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2016-10-28 18:34:46 | 
| 言語 | Python2  (2.7.18)  | 
                    
| 結果 | 
                             
                                RE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 1,041 bytes | 
| コンパイル時間 | 42 ms | 
| コンパイル使用メモリ | 7,040 KB | 
| 実行使用メモリ | 7,040 KB | 
| 最終ジャッジ日時 | 2024-11-24 05:14:26 | 
| 合計ジャッジ時間 | 1,300 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 WA * 1 RE * 3 | 
| other | AC * 15 WA * 6 | 
ソースコード
import Queue
h,w = map(int, raw_input().split())
sy,sx,gy,gx = map(int, raw_input().split())
sx-=1
sy-=1
gx-=1
gy-=1
dist = [[0,1], [0,-1], [1,0], [-1,0]]
blocks = [[0]*w for _ in xrange(h)]
checked = [[False]*w for _ in xrange(h)]
for i in xrange(h):
  b = raw_input()
  for j in xrange(w):
    blocks[i][j] = int(b[j])
q = Queue.Queue()
q.put([sx, sy])
checked[sx][sy] = True
reach = False
counter = 0
while q.qsize() > 0:
  counter += 1
  pos = q.get()
  if pos[0]==gx and pos[1]==gy:
    reach = True
    break
  for d in dist:
    x = pos[0]+d[0]
    y = pos[1]+d[1]
    if x<0 or y<0 or h<=x or w<=y or checked[x][y]: continue
    if abs(blocks[pos[0]][pos[1]]-blocks[x][y]) <= 1 and checked[x][y]==False:
      q.put([x, y])
      checked[x][y] = True
  for d in dist:
    x = pos[0]+d[0]*2
    y = pos[1]+d[1]*2
    if x<0 or y<0 or h<=x or w<=y or checked[x][y]: continue
    if blocks[pos[0]][pos[1]] >= blocks[x][y] and checked[x][y]==False:
      q.put([x, y])
      checked[x][y] = True
if reach: print "YES"
else: print "NO"