結果

問題 No.124 門松列(3)
ユーザー roarisroaris
提出日時 2019-12-04 14:19:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,426 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-05-07 20:00:04
合計ジャッジ時間 2,833 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,952 KB
testcase_01 WA -
testcase_02 AC 41 ms
53,888 KB
testcase_03 AC 90 ms
76,800 KB
testcase_04 AC 50 ms
61,696 KB
testcase_05 AC 48 ms
61,568 KB
testcase_06 AC 40 ms
53,760 KB
testcase_07 AC 40 ms
53,760 KB
testcase_08 AC 41 ms
54,016 KB
testcase_09 AC 40 ms
53,504 KB
testcase_10 AC 41 ms
53,760 KB
testcase_11 AC 40 ms
53,888 KB
testcase_12 AC 42 ms
53,504 KB
testcase_13 WA -
testcase_14 AC 40 ms
54,144 KB
testcase_15 AC 40 ms
53,888 KB
testcase_16 AC 43 ms
54,528 KB
testcase_17 AC 41 ms
54,144 KB
testcase_18 AC 41 ms
53,888 KB
testcase_19 AC 42 ms
54,144 KB
testcase_20 AC 43 ms
54,016 KB
testcase_21 AC 43 ms
53,888 KB
testcase_22 AC 43 ms
54,332 KB
testcase_23 AC 46 ms
60,288 KB
testcase_24 AC 46 ms
60,672 KB
testcase_25 AC 46 ms
60,672 KB
testcase_26 AC 45 ms
60,288 KB
testcase_27 AC 46 ms
60,288 KB
testcase_28 AC 48 ms
61,952 KB
testcase_29 AC 47 ms
61,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def bfs():
    q = deque([])
    dist1 = [[10**18]*W for _ in range(H)] #↓↑
    dist2 = [[10**18]*W for _ in range(H)] #↑↓
    
    if M[0][0]>M[0][1]:
        q.append((0, 1, -1, M[0][0]))
        dist2[0][1] = 1
    elif M[0][0]<M[0][1]:
        q.append((0, 1, 1, M[0][0]))
        dist1[0][1] = 1
    
    if M[0][0]>M[1][0]:
        q.append((1, 0, -1, M[0][0]))
        dist2[1][0] = 1
    elif M[0][0]<M[1][0]:
        q.append((1, 0, 1, M[0][0]))
        dist1[1][0] = 1
    
    while q:
        cx, cy, flag, prev_prev = q.popleft()
        
        if flag==-1:
            for nx, ny in [(cx-1, cy), (cx+1, cy), (cx, cy-1), (cx, cy+1)]:
                if 0<=nx<H and 0<=ny<W and dist1[nx][ny]==10**18 and M[cx][cy]<M[nx][ny] and M[nx][ny]!=prev_prev:
                    dist1[nx][ny] = dist2[cx][cy]+1
                    q.append((nx, ny, 1, M[cx][cy]))
        else:
            for nx, ny in [(cx-1, cy), (cx+1, cy), (cx, cy-1), (cx, cy+1)]:
                if 0<=nx<H and 0<=ny<W and dist2[nx][ny]==10**18 and M[cx][cy]>M[nx][ny] and M[nx][ny]!=prev_prev:
                    dist2[nx][ny] = dist1[cx][cy]+1
                    q.append((nx, ny, -1, M[cx][cy]))
    
    return min(dist1[-1][-1], dist2[-1][-1])
    
W, H = map(int, input().split())
M = [list(map(int, input().split())) for _ in range(H)]
ans = bfs()

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