結果
問題 |
No.3199 Key-Door Grid
|
ユーザー |
|
提出日時 | 2025-07-11 22:21:10 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 670 bytes |
コンパイル時間 | 270 ms |
コンパイル使用メモリ | 82,008 KB |
実行使用メモリ | 623,468 KB |
最終ジャッジ日時 | 2025-07-11 22:21:16 |
合計ジャッジ時間 | 5,703 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | MLE * 1 -- * 36 |
ソースコード
from collections import deque H,W,M=map(int,input().split()) S=[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=set() Q=deque([(s,0,0)]) while Q: (h,w),cnt,key=Q.popleft() vis.add((h,w)) 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 (h+dh,w+dw) in vis: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)