結果
問題 | No.1283 Extra Fee |
ユーザー | DrDrpilot |
提出日時 | 2022-03-15 13:10:10 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,447 ms / 2,000 ms |
コード長 | 1,090 bytes |
コンパイル時間 | 217 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 120,668 KB |
最終ジャッジ日時 | 2024-11-16 08:39:00 |
合計ジャッジ時間 | 20,916 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,864 KB |
testcase_01 | AC | 42 ms
52,608 KB |
testcase_02 | AC | 42 ms
52,736 KB |
testcase_03 | AC | 40 ms
52,352 KB |
testcase_04 | AC | 40 ms
52,480 KB |
testcase_05 | AC | 40 ms
52,608 KB |
testcase_06 | AC | 42 ms
53,504 KB |
testcase_07 | AC | 39 ms
53,120 KB |
testcase_08 | AC | 47 ms
53,760 KB |
testcase_09 | AC | 48 ms
53,504 KB |
testcase_10 | AC | 45 ms
53,120 KB |
testcase_11 | AC | 221 ms
79,856 KB |
testcase_12 | AC | 234 ms
79,624 KB |
testcase_13 | AC | 171 ms
78,336 KB |
testcase_14 | AC | 346 ms
82,644 KB |
testcase_15 | AC | 468 ms
85,424 KB |
testcase_16 | AC | 204 ms
79,676 KB |
testcase_17 | AC | 1,288 ms
117,956 KB |
testcase_18 | AC | 1,363 ms
107,992 KB |
testcase_19 | AC | 1,446 ms
107,796 KB |
testcase_20 | AC | 1,249 ms
105,376 KB |
testcase_21 | AC | 1,233 ms
106,316 KB |
testcase_22 | AC | 1,128 ms
102,484 KB |
testcase_23 | AC | 1,101 ms
103,456 KB |
testcase_24 | AC | 1,110 ms
103,552 KB |
testcase_25 | AC | 1,414 ms
108,948 KB |
testcase_26 | AC | 1,358 ms
108,716 KB |
testcase_27 | AC | 1,335 ms
108,800 KB |
testcase_28 | AC | 1,373 ms
108,844 KB |
testcase_29 | AC | 1,447 ms
120,668 KB |
ソースコード
N,M = map(int,input().split()) H = N W = N S = [[0] * W for _ in range(H)] for i in range(M): h,w,c = map(int,input().split()) S[h-1][w-1] = c import heapq inf = 10 ** 18 dist = [[[inf] * 2 for _ in range(W)] for _ in range(H)] q = [(0,0,0,0)] dist[0][0][0] = 0 while q: d,h,w,flag = heapq.heappop(q) if dist[h][w][flag] < d:continue if h == N-1 and w == N -1:break for i,j in [(1,0),(-1,0),(0,1),(0,-1)]: if 0 <= h + i < H and 0 <= w + j < W: if S[h+i][w+j] == 0: if dist[h+i][w+j][flag] > d + 1: dist[h+i][w+j][flag] = d + 1 heapq.heappush(q,(d+1,h+i,w+j,flag)) else: c = S[h+i][w+j] if dist[h+i][w+j][flag] > d + 1 + c: dist[h+i][w+j][flag] = d + 1 + c heapq.heappush(q,(d+1+c,h+i,w+j,flag)) if flag == 0: if dist[h+i][w+j][1] > d + 1: dist[h+i][w+j][1] = d + 1 heapq.heappush(q,(d+1,h+i,w+j,1)) print(dist[-1][-1][1])