結果

問題 No.124 門松列(3)
ユーザー roarisroaris
提出日時 2019-12-09 09:35:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 5,000 ms
コード長 1,096 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 77,592 KB
最終ジャッジ日時 2024-06-11 21:54:19
合計ジャッジ時間 2,515 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
68,920 KB
testcase_01 AC 37 ms
54,072 KB
testcase_02 AC 36 ms
54,476 KB
testcase_03 AC 66 ms
77,592 KB
testcase_04 AC 45 ms
64,192 KB
testcase_05 AC 43 ms
64,580 KB
testcase_06 AC 39 ms
54,120 KB
testcase_07 AC 44 ms
53,912 KB
testcase_08 AC 41 ms
55,920 KB
testcase_09 AC 40 ms
55,120 KB
testcase_10 AC 41 ms
55,072 KB
testcase_11 AC 41 ms
55,068 KB
testcase_12 AC 41 ms
55,244 KB
testcase_13 AC 41 ms
54,792 KB
testcase_14 AC 40 ms
54,396 KB
testcase_15 AC 40 ms
54,788 KB
testcase_16 AC 51 ms
64,920 KB
testcase_17 AC 39 ms
55,836 KB
testcase_18 AC 39 ms
55,440 KB
testcase_19 AC 41 ms
54,664 KB
testcase_20 AC 50 ms
64,932 KB
testcase_21 AC 39 ms
54,320 KB
testcase_22 AC 39 ms
55,728 KB
testcase_23 AC 41 ms
62,096 KB
testcase_24 AC 42 ms
62,364 KB
testcase_25 AC 44 ms
63,104 KB
testcase_26 AC 42 ms
61,728 KB
testcase_27 AC 41 ms
61,428 KB
testcase_28 AC 43 ms
63,724 KB
testcase_29 AC 43 ms
63,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def bfs():
    dist = [[[-1]*4 for _ in range(W)] for _ in range(H)]
    q = deque([])
    
    if M[0][0]!=M[0][1]:
        dist[0][1][0] = 1
        q.append((0, 1, 0, 0, 0))
    
    if M[0][0]!=M[1][0]:
        dist[1][0][1] = 1
        q.append((1, 0, 0, 0, 1))
        
    while q:
        cx, cy, px, py, f = q.popleft()
        
        for nx, ny, nf in [(cx, cy-1, 0), (cx-1, cy, 1), (cx, cy+1, 2), (cx+1, cy, 3)]:
            if not (0<=nx<H and 0<=ny<W):
                continue
            
            a, b, c = M[nx][ny], M[cx][cy], M[px][py]
            
            if dist[nx][ny][nf]==-1 and a not in [b, c] and ((a>b and b<c) or (a<b and b>c)):
                dist[nx][ny][nf] = dist[cx][cy][f]+1
                q.append((nx, ny, cx, cy, nf))
    
    return dist

W, H = map(int, input().split())
M = [list(map(int, input().split())) for _ in range(H)]
dist = bfs()
ans = 10**18

for i in range(4):
    if dist[H-1][W-1][i]==-1:
        continue
    
    ans = min(ans, dist[H-1][W-1][i])

if ans==10**18:
    print(-1)
else:
    print(ans)
0