結果

問題 No.1283 Extra Fee
ユーザー platinumplatinum
提出日時 2020-09-05 00:59:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,159 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 95,924 KB
最終ジャッジ日時 2024-11-26 21:32:30
合計ジャッジ時間 54,860 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 483 ms
49,244 KB
testcase_01 AC 468 ms
95,924 KB
testcase_02 AC 465 ms
49,492 KB
testcase_03 AC 466 ms
93,488 KB
testcase_04 AC 466 ms
49,372 KB
testcase_05 AC 472 ms
93,356 KB
testcase_06 AC 471 ms
49,120 KB
testcase_07 AC 467 ms
91,568 KB
testcase_08 AC 461 ms
49,496 KB
testcase_09 AC 469 ms
93,328 KB
testcase_10 AC 468 ms
49,628 KB
testcase_11 AC 775 ms
49,112 KB
testcase_12 AC 821 ms
49,076 KB
testcase_13 AC 679 ms
93,748 KB
testcase_14 AC 1,483 ms
49,240 KB
testcase_15 TLE -
testcase_16 AC 800 ms
49,632 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush,heappop
import numpy as np

INF = int(1e18)
dh = [1,0,-1,0]
dw = [0,1,0,-1]

N, M = map(int,input().split())
dist0 = np.full((N,N),INF)
dist1 = np.full((N,N),INF)
c = np.zeros((N,N))
dist0[0][0] = 0
dist1[0][0] = 0
for i in range(M):
    H, W, C = map(int,input().split())
    H -= 1
    W -= 1
    c[H][W] = C

q = [(0,0,0,0)]
while q:
    C, H, W, used = heappop(q)
    if(used == 0 and dist0[H][W] < C):
        continue
    if(used == 1 and dist1[H][W] < C):
        continue
    for i in range(4):
        nH = H + dh[i]
        nW = W + dw[i]
        if(nH < 0 or nH >= N):
            continue
        if(nW < 0 or nW >= N):
            continue
        nC0 = C + c[nH][nW] + 1
        nC1 = C + 1
        if(used == 0):
            if(dist0[nH][nW] > nC0):
                heappush(q,(nC0,nH,nW,0))
                dist0[nH][nW] = nC0
            if(dist1[nH][nW] > nC1):
                heappush(q,(nC1,nH,nW,1))
                dist1[nH][nW] = nC1
        else:
            if(dist1[nH][nW] > nC0):
                heappush(q,(nC0,nH,nW,1))
                dist1[nH][nW] = nC0

print(min(dist0[N-1][N-1],dist1[N-1][N-1]))
0