結果

問題 No.1283 Extra Fee
ユーザー 👑 KazunKazun
提出日時 2020-11-07 00:14:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,260 ms / 2,000 ms
コード長 1,207 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 108,664 KB
最終ジャッジ日時 2024-11-16 06:55:26
合計ジャッジ時間 14,163 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,848 KB
testcase_01 AC 47 ms
53,296 KB
testcase_02 AC 37 ms
53,352 KB
testcase_03 AC 37 ms
53,300 KB
testcase_04 AC 37 ms
53,308 KB
testcase_05 AC 36 ms
53,344 KB
testcase_06 AC 40 ms
52,888 KB
testcase_07 AC 39 ms
53,080 KB
testcase_08 AC 42 ms
53,212 KB
testcase_09 AC 39 ms
53,512 KB
testcase_10 AC 42 ms
54,088 KB
testcase_11 AC 193 ms
78,752 KB
testcase_12 AC 139 ms
78,016 KB
testcase_13 AC 120 ms
77,708 KB
testcase_14 AC 178 ms
79,428 KB
testcase_15 AC 232 ms
80,576 KB
testcase_16 AC 126 ms
77,644 KB
testcase_17 AC 1,137 ms
106,756 KB
testcase_18 AC 683 ms
100,384 KB
testcase_19 AC 702 ms
100,568 KB
testcase_20 AC 776 ms
99,116 KB
testcase_21 AC 683 ms
99,068 KB
testcase_22 AC 596 ms
96,308 KB
testcase_23 AC 896 ms
89,940 KB
testcase_24 AC 1,003 ms
97,476 KB
testcase_25 AC 717 ms
102,120 KB
testcase_26 AC 739 ms
101,236 KB
testcase_27 AC 741 ms
101,404 KB
testcase_28 AC 718 ms
101,424 KB
testcase_29 AC 1,260 ms
108,664 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)]

    Dist0=[[inf]*(N+1) for __ in range(N+1)]
    Dist1=[[inf]*(N+1) for __ in range(N+1)]
    Dist0[1][1]=0

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

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

        i,j,m=v
        if (m==0 and d<Dist0[i][j]) or (m==1 and d<Dist1[i][j]):
            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 m==0 and c<Dist0[i+a][j+b]:
                    Dist0[i+a][j+b]=c
                    heapq.heappush(Q,(c,(i+a,j+b,0)))

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

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

    print(min(Dist0[N][N],Dist1[N][N]))

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