結果

問題 No.1283 Extra Fee
ユーザー 👑 KazunKazun
提出日時 2020-11-07 00:09:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,482 ms / 2,000 ms
コード長 992 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 135,700 KB
最終ジャッジ日時 2024-11-16 06:54:25
合計ジャッジ時間 15,993 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,048 KB
testcase_01 AC 38 ms
53,296 KB
testcase_02 AC 39 ms
52,752 KB
testcase_03 AC 37 ms
52,612 KB
testcase_04 AC 35 ms
53,184 KB
testcase_05 AC 36 ms
52,764 KB
testcase_06 AC 39 ms
54,460 KB
testcase_07 AC 37 ms
53,744 KB
testcase_08 AC 40 ms
54,572 KB
testcase_09 AC 40 ms
54,264 KB
testcase_10 AC 38 ms
53,384 KB
testcase_11 AC 200 ms
80,936 KB
testcase_12 AC 152 ms
79,224 KB
testcase_13 AC 127 ms
78,328 KB
testcase_14 AC 213 ms
84,324 KB
testcase_15 AC 289 ms
88,996 KB
testcase_16 AC 137 ms
78,792 KB
testcase_17 AC 1,324 ms
131,996 KB
testcase_18 AC 850 ms
127,108 KB
testcase_19 AC 885 ms
128,416 KB
testcase_20 AC 828 ms
124,512 KB
testcase_21 AC 830 ms
125,492 KB
testcase_22 AC 719 ms
119,460 KB
testcase_23 AC 1,093 ms
117,512 KB
testcase_24 AC 1,135 ms
125,120 KB
testcase_25 AC 872 ms
130,176 KB
testcase_26 AC 904 ms
129,788 KB
testcase_27 AC 895 ms
129,688 KB
testcase_28 AC 917 ms
130,052 KB
testcase_29 AC 1,482 ms
135,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys,heapq
    input=sys.stdin.readline

    N,M=map(int,input().split())
    inf=float("inf")

    F=[[1]*(N+1) for _ in range(N+1)]
    for _ in range(M):
        h,w,c=map(int,input().split())
        F[h][w]+=c

    V=[(1,0),(-1,0),(0,1),(0,-1)]

    Dist=[[[inf,inf] for _ in range(N+1)] for __ in range(N+1)]
    Dist[1][1][0]=0

    Q=[(0,(1,1,0))]
    heapq.heapify(Q)

    while Q:
        d,v=heapq.heappop(Q)

        i,j,m=v
        if d<Dist[i][j][m]:
            continue

        if i==j==N:
            break

        for (a,b) in V:
            if 1<=i+a<=N and 1<=j+b<=N:
                c=d+F[i+a][j+b]
                if c<Dist[i+a][j+b][m]:
                    Dist[i+a][j+b][m]=c
                    heapq.heappush(Q,(c,(i+a,j+b,m)))

                if m==0 and d+1<Dist[i+a][j+b][1]:
                    Dist[i+a][j+b][1]=d+1
                    heapq.heappush(Q,(d+1,(i+a,j+b,1)))

    print(min(Dist[N][N]))

if __name__=="__main__":
    main()
0