結果

問題 No.424 立体迷路
ユーザー takakintakakin
提出日時 2020-05-07 17:29:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 967 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-03 09:31:52
合計ジャッジ時間 1,826 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 28 ms
11,008 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 29 ms
11,008 KB
testcase_14 AC 29 ms
10,880 KB
testcase_15 AC 29 ms
10,880 KB
testcase_16 AC 31 ms
10,880 KB
testcase_17 AC 49 ms
10,880 KB
testcase_18 AC 51 ms
11,008 KB
testcase_19 AC 50 ms
11,008 KB
testcase_20 AC 48 ms
11,008 KB
testcase_21 AC 28 ms
10,880 KB
testcase_22 AC 29 ms
10,880 KB
testcase_23 AC 33 ms
11,008 KB
testcase_24 AC 58 ms
10,880 KB
testcase_25 AC 56 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
h,w=map(int,input().split())
sx,sy,gx,gy=map(int,input().split())
B=[input() for _ in range(h)]
n=h*w
d=((1,0),(0,1),(-1,0),(0,-1))

par=[-1]*n

def find(x):
  if par[x]<0:
    return x
  else:
    par[x]=find(par[x])
    return par[x]

def unite(x,y):
  x=find(x)
  y=find(y)
  if x==y:
    return False
  else:
    if par[x]>par[y]:
      x,y=y,x
    par[x]+=par[y]
    par[y]=x
    return True

def same(x,y):
  return find(x)==find(y)

def size(x):
  return -par[find(x)]

for i in range(h):
  for j in range(w):
    cur=int(B[i][j])
    for dx,dy in d:
      if 0<=i+dx<h and 0<=j+dy<w:
        if abs(cur-int(B[i+dx][j+dy]))<=1:
          unite(i*w+j,(i+dx)*w+j+dy)
    for dx,dy in d:
      if 0<=i+2*dx<h and 0<=j+2*dy<w:
        if cur==int(B[i+2*dx][j+2*dy]) and int(B[i+dx][j+dy])<cur:
          unite(i*w+j,(i+2*dx)*w+j+2*dy)


if same((sx-1)*w+sy-1,(gx-1)*w+gy-1):
  print("YES")
else:
  print("NO")
0