結果

問題 No.1283 Extra Fee
ユーザー wgrapewgrape
提出日時 2024-11-14 17:21:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,947 ms / 2,000 ms
コード長 1,365 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 142,744 KB
最終ジャッジ日時 2024-11-14 17:22:14
合計ジャッジ時間 26,176 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,220 KB
testcase_01 AC 41 ms
53,592 KB
testcase_02 AC 40 ms
53,100 KB
testcase_03 AC 40 ms
54,296 KB
testcase_04 AC 40 ms
53,844 KB
testcase_05 AC 40 ms
54,004 KB
testcase_06 AC 42 ms
54,520 KB
testcase_07 AC 40 ms
53,408 KB
testcase_08 AC 43 ms
55,128 KB
testcase_09 AC 42 ms
55,276 KB
testcase_10 AC 43 ms
53,360 KB
testcase_11 AC 233 ms
81,732 KB
testcase_12 AC 302 ms
82,316 KB
testcase_13 AC 205 ms
79,788 KB
testcase_14 AC 406 ms
86,544 KB
testcase_15 AC 562 ms
92,620 KB
testcase_16 AC 244 ms
80,992 KB
testcase_17 AC 1,717 ms
137,560 KB
testcase_18 AC 1,760 ms
128,384 KB
testcase_19 AC 1,773 ms
128,708 KB
testcase_20 AC 1,673 ms
125,552 KB
testcase_21 AC 1,686 ms
127,304 KB
testcase_22 AC 1,521 ms
120,916 KB
testcase_23 AC 1,397 ms
125,260 KB
testcase_24 AC 1,398 ms
125,452 KB
testcase_25 AC 1,790 ms
130,860 KB
testcase_26 AC 1,785 ms
130,468 KB
testcase_27 AC 1,832 ms
130,732 KB
testcase_28 AC 1,803 ms
130,136 KB
testcase_29 AC 1,947 ms
142,744 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] * 2 for i in range(N)] for j in range(N)]
INF = 1 << 60
best = [[[INF] * 2 for i in range(N)] for j in range(N)]
cases = ((1,0),(0,1),(-1,0),(0,-1))
while q:
    c, used, i, j = hq.heappop(q)
    if visited[i][j][used]:
        continue
    visited[i][j][used] = 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[ni][nj][used + 1] and best[ni][nj][used + 1] > c + 1:
                hq.heappush(q, (c + 1, used + 1, ni, nj))
                best[ni][nj][used + 1] = c + 1
            if not visited[ni][nj][used] and best[ni][nj][used] > c + G[ni][nj]:
                hq.heappush(q, (c + G[ni][nj], used, ni, nj))
                best[ni][nj][used] = c + G[ni][nj]
        else:
            if not visited[ni][nj][used] and best[ni][nj][used] > c + G[ni][nj]:
                hq.heappush(q, (c + G[ni][nj], used, ni, nj))
                best[ni][nj][used] = c + G[ni][nj]
0