結果

問題 No.2095 High Rise
ユーザー 👑 KazunKazun
提出日時 2022-10-07 22:02:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 887 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 172,248 KB
最終ジャッジ日時 2024-06-12 18:25:45
合計ジャッジ時間 17,529 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,676 KB
testcase_01 AC 38 ms
54,272 KB
testcase_02 AC 36 ms
53,300 KB
testcase_03 AC 38 ms
53,344 KB
testcase_04 AC 37 ms
52,896 KB
testcase_05 AC 37 ms
53,648 KB
testcase_06 AC 38 ms
53,104 KB
testcase_07 AC 37 ms
53,136 KB
testcase_08 AC 37 ms
54,084 KB
testcase_09 AC 36 ms
53,568 KB
testcase_10 AC 37 ms
53,620 KB
testcase_11 AC 36 ms
53,356 KB
testcase_12 AC 87 ms
76,672 KB
testcase_13 AC 87 ms
76,536 KB
testcase_14 AC 97 ms
76,596 KB
testcase_15 AC 88 ms
76,816 KB
testcase_16 AC 74 ms
75,108 KB
testcase_17 AC 336 ms
83,804 KB
testcase_18 AC 235 ms
80,472 KB
testcase_19 AC 130 ms
77,516 KB
testcase_20 AC 384 ms
86,536 KB
testcase_21 AC 683 ms
98,992 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

def solve():
    N,M=map(int,input().split())
    A=[]
    for _ in range(N):
        A.append(list(map(int,input().split())))

    if N==1:
        return 0

    inf=float("inf")
    T=[[inf]*M for _ in range(N)]
    U=[inf]*N; U[0]=0

    Q=[(0,0,-1)]
    while Q:
        cost,i,j=heappop(Q)

        if i==N-1:
            return cost

        if j==-1:
            Ai=A[i]; Ti=T[i]
            for k in range(M):
                if Ti[k]>cost+Ai[k]:
                    Ti[k]=cost+Ai[k]
                    heappush(Q,(Ti[k],i,k))
        else:
            alpha=cost+A[i+1][j]
            if T[i+1][j]>alpha:
                T[i+1][j]=alpha
                heappush(Q, (T[i+1][j],i+1,j))

            if U[i+1]>alpha:
                U[i+1]=alpha
                heappush(Q, (U[i+1],i+1,-1))

#==================================================
print(solve())
0