結果

問題 No.1283 Extra Fee
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-11-06 22:46:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,533 ms / 2,000 ms
コード長 1,446 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 348,396 KB
最終ジャッジ日時 2024-11-16 06:49:56
合計ジャッジ時間 21,785 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,232 KB
testcase_01 AC 40 ms
54,872 KB
testcase_02 AC 43 ms
54,700 KB
testcase_03 AC 40 ms
54,660 KB
testcase_04 AC 39 ms
55,580 KB
testcase_05 AC 38 ms
56,172 KB
testcase_06 AC 45 ms
61,956 KB
testcase_07 AC 41 ms
55,544 KB
testcase_08 AC 47 ms
61,076 KB
testcase_09 AC 43 ms
55,236 KB
testcase_10 AC 41 ms
55,796 KB
testcase_11 AC 217 ms
92,424 KB
testcase_12 AC 207 ms
93,412 KB
testcase_13 AC 151 ms
87,908 KB
testcase_14 AC 327 ms
121,656 KB
testcase_15 AC 445 ms
144,720 KB
testcase_16 AC 176 ms
91,624 KB
testcase_17 AC 1,403 ms
319,032 KB
testcase_18 AC 1,306 ms
316,108 KB
testcase_19 AC 1,406 ms
328,212 KB
testcase_20 AC 1,281 ms
312,304 KB
testcase_21 AC 1,293 ms
311,200 KB
testcase_22 AC 1,187 ms
287,716 KB
testcase_23 AC 1,301 ms
323,844 KB
testcase_24 AC 1,345 ms
328,284 KB
testcase_25 AC 1,446 ms
334,256 KB
testcase_26 AC 1,444 ms
334,200 KB
testcase_27 AC 1,439 ms
334,040 KB
testcase_28 AC 1,502 ms
334,568 KB
testcase_29 AC 1,533 ms
348,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys;input=sys.stdin.readline
from heapq import heappush, heappop
INF = 10**18
def dijkstra(N, G, s):
    dist = [INF] * N
    que = [(0, s)]
    dist[s] = 0
    while que:
        c, v = heappop(que)
        if dist[v] < c:
            continue
        for t, cost in G[v]:
            if dist[v] + cost < dist[t]:
                dist[t] = dist[v] + cost
                heappush(que, (dist[t], t))
    return dist
N, M = map(int, input().split())
from collections import defaultdict
D = defaultdict(int)
U = N**2
for _ in range(M):
    a, b, c = map(int, input().split())
    a-=1
    b-=1
    D[a*N+b] = c
    D[a*N+b+U] = c

G = [set() for _ in range(2*(N**2))]
for i in range(N):
    for j in range(N):
        c = i*N+j
        if j!=N-1:
            G[c].add((c+1, 1+D[c+1]))
        if j!=0:
            G[c].add((c-1, 1+D[c-1]))
        if i!=0:
            G[c].add((c-N, 1+D[c-N]))
        if i!=N-1:
            G[c].add((c+N, 1+D[c+N]))

        if j!=N-1:
            G[c].add((c+1+U, 1))
        if j!=0:
            G[c].add((c-1+U, 1))
        if i!=0:
            G[c].add((c-N+U, 1))
        if i!=N-1:
            G[c].add((c+N+U, 1))

        c += U
        if j!=N-1:
            G[c].add((c+1, 1+D[c+1]))
        if j!=0:
            G[c].add((c-1, 1+D[c-1]))
        if i!=0:
            G[c].add((c-N, 1+D[c-N]))
        if i!=N-1:
            G[c].add((c+N, 1+D[c+N]))

X = dijkstra(2*(N**2), G, 0)
print(X[-1])

0