結果

問題 No.1283 Extra Fee
ユーザー wgrapewgrape
提出日時 2024-11-14 17:23:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,687 ms / 2,000 ms
コード長 1,365 bytes
コンパイル時間 447 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 106,616 KB
最終ジャッジ日時 2024-11-14 17:24:14
合計ジャッジ時間 22,251 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,860 KB
testcase_01 AC 39 ms
53,508 KB
testcase_02 AC 43 ms
53,328 KB
testcase_03 AC 63 ms
53,500 KB
testcase_04 AC 40 ms
53,820 KB
testcase_05 AC 41 ms
55,064 KB
testcase_06 AC 41 ms
53,668 KB
testcase_07 AC 46 ms
54,928 KB
testcase_08 AC 43 ms
54,800 KB
testcase_09 AC 42 ms
55,252 KB
testcase_10 AC 40 ms
55,480 KB
testcase_11 AC 216 ms
79,652 KB
testcase_12 AC 275 ms
80,212 KB
testcase_13 AC 192 ms
78,720 KB
testcase_14 AC 401 ms
80,700 KB
testcase_15 AC 461 ms
81,680 KB
testcase_16 AC 230 ms
78,828 KB
testcase_17 AC 1,516 ms
105,368 KB
testcase_18 AC 1,382 ms
96,820 KB
testcase_19 AC 1,361 ms
94,288 KB
testcase_20 AC 1,285 ms
93,532 KB
testcase_21 AC 1,314 ms
93,784 KB
testcase_22 AC 1,155 ms
91,320 KB
testcase_23 AC 1,156 ms
89,744 KB
testcase_24 AC 1,166 ms
89,536 KB
testcase_25 AC 1,402 ms
95,144 KB
testcase_26 AC 1,388 ms
95,648 KB
testcase_27 AC 1,401 ms
94,948 KB
testcase_28 AC 1,412 ms
95,612 KB
testcase_29 AC 1,687 ms
106,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
G = [[1] * N for i in range(N)]
G[0][0] = 0

for _ in range(M):
    h,w,c = map(int,input().split())
    G[h - 1][w - 1] += c
    
import heapq as hq
q = []
hq.heappush(q, (0, 0, 0, 0))
visited = [[[False] * N for i in range(N)] for j in range(2)]
INF = 1 << 60
best = [[[INF] * N for i in range(N)] for j in range(2)]
cases = ((1,0),(0,1),(-1,0),(0,-1))
while q:
    c, used, i, j = hq.heappop(q)
    if visited[used][i][j]:
        continue
    visited[used][i][j] = True
    if i == N - 1 and j == N - 1:
        print(c)
        break
    for ci,cj in cases:
        ni = i + ci
        nj = j + cj
        if not (0 <= ni < N and 0 <= nj < N):
            continue
        if G[ni][nj] > 1 and used == 0: # まだ権利を使っていない
            if not visited[used + 1][ni][nj] and best[used + 1][ni][nj] > c + 1:
                hq.heappush(q, (c + 1, used + 1, ni, nj))
                best[used + 1][ni][nj] = c + 1
            if not visited[used][ni][nj] and best[used][ni][nj] > c + G[ni][nj]:
                hq.heappush(q, (c + G[ni][nj], used, ni, nj))
                best[used][ni][nj] = c + G[ni][nj]
        else:
            if not visited[used][ni][nj] and best[used][ni][nj] > c + G[ni][nj]:
                hq.heappush(q, (c + G[ni][nj], used, ni, nj))
                best[used][ni][nj] = c + G[ni][nj]
0