結果

問題 No.1283 Extra Fee
ユーザー tanon710tanon710
提出日時 2020-11-07 02:33:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,916 ms / 2,000 ms
コード長 1,195 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 384,728 KB
最終ジャッジ日時 2024-11-16 06:57:14
合計ジャッジ時間 26,334 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,864 KB
testcase_01 AC 40 ms
53,228 KB
testcase_02 AC 40 ms
54,924 KB
testcase_03 AC 40 ms
54,136 KB
testcase_04 AC 39 ms
53,028 KB
testcase_05 AC 40 ms
53,056 KB
testcase_06 AC 43 ms
54,440 KB
testcase_07 AC 40 ms
53,972 KB
testcase_08 AC 45 ms
59,192 KB
testcase_09 AC 42 ms
53,360 KB
testcase_10 AC 41 ms
53,932 KB
testcase_11 AC 211 ms
90,220 KB
testcase_12 AC 206 ms
94,124 KB
testcase_13 AC 157 ms
88,392 KB
testcase_14 AC 343 ms
130,900 KB
testcase_15 AC 471 ms
162,832 KB
testcase_16 AC 184 ms
95,580 KB
testcase_17 AC 1,492 ms
303,856 KB
testcase_18 AC 1,719 ms
355,568 KB
testcase_19 AC 1,821 ms
374,664 KB
testcase_20 AC 1,688 ms
354,996 KB
testcase_21 AC 1,802 ms
359,684 KB
testcase_22 AC 1,385 ms
329,548 KB
testcase_23 AC 1,787 ms
383,228 KB
testcase_24 AC 1,773 ms
383,076 KB
testcase_25 AC 1,842 ms
384,112 KB
testcase_26 AC 1,837 ms
384,428 KB
testcase_27 AC 1,916 ms
384,728 KB
testcase_28 AC 1,834 ms
384,312 KB
testcase_29 AC 1,628 ms
324,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys
input=sys.stdin.readline

def calc():
    n,m=map(int,input().split())
    fees=[1]*(n*n)
    for _ in range(m):
        y,x,cost=map(int,input().split())
        fees[n*(y-1)+x-1]+=cost
    g=[[] for _ in range(2*n*n)]
    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
                    fee=fees[n*(y+dy)+x+dx]
                    if fee!=1:
                        g[u].append([v,fee])
                        g[u].append([v+n*n,1])
                        g[u+n*n].append([v+n*n,fee])
                    else:
                        g[u].append([v,1])
                        g[u+n*n].append([v+n*n,1])
    hq = [(0, 0)]
    heapq.heapify(hq)
    INF=10**15
    cost = [INF]*(2*n*n)
    cost[0] = 0
    while hq:
        c, v = heapq.heappop(hq)
        if c > cost[v]:
            continue
        for u, d in g[v]:
            tmp=d+cost[v]
            if tmp < cost[u]:
                cost[u] = tmp
                heapq.heappush(hq, (tmp, u))
    print(min(cost[n*n-1],cost[2*n*n-1]))
calc()
0