結果

問題 No.1283 Extra Fee
ユーザー tanon710tanon710
提出日時 2020-11-07 02:15:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,774 ms / 2,000 ms
コード長 1,163 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 400,400 KB
最終ジャッジ日時 2024-07-22 14:06:52
合計ジャッジ時間 24,996 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,056 KB
testcase_01 AC 35 ms
53,384 KB
testcase_02 AC 37 ms
54,056 KB
testcase_03 AC 36 ms
53,140 KB
testcase_04 AC 36 ms
54,564 KB
testcase_05 AC 38 ms
53,104 KB
testcase_06 AC 41 ms
55,808 KB
testcase_07 AC 35 ms
53,984 KB
testcase_08 AC 41 ms
60,388 KB
testcase_09 AC 38 ms
55,560 KB
testcase_10 AC 36 ms
55,396 KB
testcase_11 AC 196 ms
90,800 KB
testcase_12 AC 192 ms
94,520 KB
testcase_13 AC 141 ms
88,928 KB
testcase_14 AC 312 ms
131,792 KB
testcase_15 AC 420 ms
163,732 KB
testcase_16 AC 160 ms
95,060 KB
testcase_17 AC 1,368 ms
307,956 KB
testcase_18 AC 1,623 ms
363,540 KB
testcase_19 AC 1,672 ms
389,960 KB
testcase_20 AC 1,584 ms
362,200 KB
testcase_21 AC 1,685 ms
368,164 KB
testcase_22 AC 1,319 ms
336,688 KB
testcase_23 AC 1,642 ms
387,156 KB
testcase_24 AC 1,728 ms
399,100 KB
testcase_25 AC 1,743 ms
400,400 KB
testcase_26 AC 1,726 ms
399,972 KB
testcase_27 AC 1,774 ms
399,940 KB
testcase_28 AC 1,727 ms
400,320 KB
testcase_29 AC 1,461 ms
324,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys
input=sys.stdin.readline

def dijkstra(s,e):
    hq = [(0, s)]
    heapq.heapify(hq)
    cost = [float('inf')] * len(e)
    cost[s] = 0
    while hq:
        c, v = heapq.heappop(hq)
        if c > cost[v]:
            continue
        for u, d in e[v]:
            tmp = d + cost[v]
            if tmp < cost[u]:
                cost[u] = tmp
                heapq.heappush(hq, (tmp, u))
    return cost

n,m=map(int,input().split())
fees=[[1]*n for _ in range(n)]
for _ in range(m):
    y,x,cost=map(int,input().split())
    fees[y-1][x-1]+=cost
g=[[] for _ in range(2*n**2)]
for y in range(n):
    for x in range(n):
        for dx,dy in [(0,1),(0,-1),(1,0),(-1,0)]:
            if 0<=x+dx<=n-1 and 0<=y+dy<=n-1:
                u=n*y+x
                v=n*(y+dy)+x+dx
                if fees[y+dy][x+dx]!=1:
                    g[u].append([v,fees[y+dy][x+dx]])
                    g[u].append([v+n**2,1])
                    g[u+n**2].append([v+n**2,fees[y+dy][x+dx]])
                else:
                    g[u].append([v,1])
                    g[u+n**2].append([v+n**2,1])
ans=dijkstra(0,g)
print(min(ans[n**2-1],ans[2*n**2-1]))
0