結果
問題 | No.1283 Extra Fee |
ユーザー | tanon710 |
提出日時 | 2020-11-07 02:17:38 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,151 bytes |
コンパイル時間 | 264 ms |
コンパイル使用メモリ | 82,116 KB |
実行使用メモリ | 400,352 KB |
最終ジャッジ日時 | 2024-11-16 06:56:19 |
合計ジャッジ時間 | 27,544 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
54,320 KB |
testcase_01 | AC | 42 ms
53,952 KB |
testcase_02 | AC | 42 ms
54,056 KB |
testcase_03 | AC | 41 ms
53,228 KB |
testcase_04 | AC | 42 ms
54,844 KB |
testcase_05 | AC | 42 ms
53,620 KB |
testcase_06 | AC | 47 ms
55,392 KB |
testcase_07 | AC | 43 ms
54,584 KB |
testcase_08 | AC | 48 ms
61,136 KB |
testcase_09 | AC | 46 ms
53,816 KB |
testcase_10 | AC | 43 ms
54,004 KB |
testcase_11 | AC | 228 ms
90,984 KB |
testcase_12 | AC | 207 ms
94,648 KB |
testcase_13 | AC | 160 ms
89,220 KB |
testcase_14 | AC | 342 ms
131,708 KB |
testcase_15 | AC | 465 ms
163,864 KB |
testcase_16 | AC | 190 ms
94,948 KB |
testcase_17 | AC | 1,481 ms
307,632 KB |
testcase_18 | AC | 1,815 ms
362,708 KB |
testcase_19 | AC | 1,857 ms
390,020 KB |
testcase_20 | AC | 1,775 ms
361,908 KB |
testcase_21 | AC | 1,916 ms
367,752 KB |
testcase_22 | AC | 1,505 ms
336,624 KB |
testcase_23 | AC | 1,769 ms
386,828 KB |
testcase_24 | AC | 1,884 ms
398,568 KB |
testcase_25 | AC | 1,955 ms
400,352 KB |
testcase_26 | AC | 1,925 ms
400,172 KB |
testcase_27 | TLE | - |
testcase_28 | AC | 1,989 ms
400,000 KB |
testcase_29 | AC | 1,599 ms
324,568 KB |
ソースコード
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*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**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 fee=fees[n*(y+dy)+x+dx] if fee!=1: g[u].append([v,fee]) g[u].append([v+n**2,1]) g[u+n**2].append([v+n**2,fee]) 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]))