結果

問題 No.3199 Key-Door Grid
ユーザー tkykwtnb
提出日時 2025-07-11 22:17:07
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 727 bytes
コンパイル時間 1,180 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 833,560 KB
最終ジャッジ日時 2025-07-11 22:17:14
合計ジャッジ時間 5,264 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other MLE * 1 -- * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque,defaultdict
H,W,M=map(int,input().split())
S=[list(input()) for _ in range(H)]
for h in range(H):
    for w in range(W):
        if S[h][w]=="S":s=(h,w)
        elif S[h][w]=="G":g=(h,w)
vis=[[0 for _ in range(W)] for _ in range(H)]
Q=deque([(s,0,0)])
while Q:
    (h,w),cnt,key=Q.popleft()
    vis[h][w]=1
    if (h,w)==g:
        exit(print(cnt))
    if "1"<=S[h][w]<="9":key=int(S[h][w])
    for dh,dw in ((-1,0),(1,0),(0,-1),(0,1)):
        if not (0<=h+dh<H and 0<=w+dw<W):continue
        if S[h+dh][w+dw]=="#":continue
        if vis[h+dh][w+dw]:continue
        if "a"<=S[h+dh][w+dw]<="i" and ord(S[h+dh][w+dw])-ord("a")+1!=key:continue
        Q.append(((h+dh,w+dw),cnt+1,key))
print(-1)
0