結果

問題 No.2095 High Rise
ユーザー 👑 KazunKazun
提出日時 2022-10-07 22:06:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,303 ms / 2,000 ms
コード長 1,336 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 198,764 KB
最終ジャッジ日時 2024-06-12 18:38:11
合計ジャッジ時間 9,781 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,752 KB
testcase_01 AC 34 ms
54,044 KB
testcase_02 AC 34 ms
53,368 KB
testcase_03 AC 33 ms
53,552 KB
testcase_04 AC 31 ms
53,200 KB
testcase_05 AC 32 ms
53,324 KB
testcase_06 AC 34 ms
53,984 KB
testcase_07 AC 32 ms
52,648 KB
testcase_08 AC 32 ms
53,704 KB
testcase_09 AC 31 ms
52,996 KB
testcase_10 AC 32 ms
53,072 KB
testcase_11 AC 32 ms
53,056 KB
testcase_12 AC 88 ms
76,904 KB
testcase_13 AC 81 ms
77,124 KB
testcase_14 AC 89 ms
76,628 KB
testcase_15 AC 88 ms
77,388 KB
testcase_16 AC 82 ms
76,820 KB
testcase_17 AC 219 ms
85,916 KB
testcase_18 AC 174 ms
81,640 KB
testcase_19 AC 120 ms
77,900 KB
testcase_20 AC 245 ms
90,336 KB
testcase_21 AC 363 ms
105,564 KB
testcase_22 AC 1,218 ms
196,672 KB
testcase_23 AC 1,258 ms
198,764 KB
testcase_24 AC 1,240 ms
195,648 KB
testcase_25 AC 1,208 ms
194,800 KB
testcase_26 AC 1,303 ms
197,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
class Heap_Point:
    def __init__(self,x,d):
        self.d=d
        self.x=x

    def __str__(self):
        return "(point:{}, dist:{})".format(self.x,self.d)

    def __repr__(self):
        return str(self)

    def __lt__(self,other):
        return self.d<other.d

    def __iter__(self):
        yield from (self.x,self.d)

#==================================================
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=[Heap_Point((0,-1),0)]
    while Q:
        (i,j),cost=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,Heap_Point((i,k),Ti[k]))
        else:
            alpha=cost+A[i+1][j]
            if T[i+1][j]>alpha:
                T[i+1][j]=alpha
                heappush(Q, Heap_Point((i+1,j),T[i+1][j]))

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

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