結果

問題 No.124 門松列(3)
ユーザー mkawa2mkawa2
提出日時 2020-01-20 23:46:52
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 1,046 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-07-02 23:15:39
合計ジャッジ時間 2,315 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
11,136 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 44 ms
11,776 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 31 ms
10,880 KB
testcase_15 AC 30 ms
10,880 KB
testcase_16 AC 32 ms
11,008 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 30 ms
10,880 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 31 ms
10,880 KB
testcase_23 AC 31 ms
10,880 KB
testcase_24 AC 32 ms
10,880 KB
testcase_25 AC 32 ms
10,752 KB
testcase_26 AC 32 ms
10,752 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 33 ms
10,752 KB
testcase_29 AC 33 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
from collections import *
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
dij = [(0, 1), (1, 0), (0, -1), (-1, 0)]

def main():
    w, h = MI()
    mm = LLI(h)
    fin = set()
    bfs = deque()
    # [距離,行,列,前のマスの値]
    bfs.append([0, 0, 0, -1])
    bfs.append([0, 0, 0, 10])
    fin=set()
    while bfs:
        d, i, j, pm = bfs.popleft()
        if (i, j, pm) in fin:continue
        fin.add((i, j, pm))
        m = mm[i][j]
        for di, dj in dij:
            ni, nj = i + di, j + dj
            if ni < 0 or nj < 0 or ni >= h or nj >= w: continue
            nm = mm[ni][nj]
            if nm == m or nm==pm or pm<m<nm or pm>m>nm: continue
            if (ni,nj,m) in fin:continue
            if (ni, nj) == (h - 1, w - 1):
                print(d + 1)
                exit()
            bfs.append([d + 1, ni, nj, m])
    print(-1)

main()
0