結果
問題 | No.1283 Extra Fee |
ユーザー | ああいい |
提出日時 | 2022-02-19 14:12:33 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,481 ms / 2,000 ms |
コード長 | 1,091 bytes |
コンパイル時間 | 240 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 120,796 KB |
最終ジャッジ日時 | 2024-11-16 08:37:44 |
合計ジャッジ時間 | 20,390 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
52,352 KB |
testcase_01 | AC | 40 ms
52,736 KB |
testcase_02 | AC | 39 ms
52,608 KB |
testcase_03 | AC | 39 ms
52,608 KB |
testcase_04 | AC | 37 ms
52,864 KB |
testcase_05 | AC | 40 ms
52,608 KB |
testcase_06 | AC | 41 ms
52,736 KB |
testcase_07 | AC | 39 ms
52,736 KB |
testcase_08 | AC | 44 ms
54,272 KB |
testcase_09 | AC | 45 ms
53,504 KB |
testcase_10 | AC | 39 ms
53,120 KB |
testcase_11 | AC | 201 ms
79,600 KB |
testcase_12 | AC | 239 ms
79,492 KB |
testcase_13 | AC | 175 ms
78,464 KB |
testcase_14 | AC | 350 ms
82,356 KB |
testcase_15 | AC | 470 ms
85,424 KB |
testcase_16 | AC | 201 ms
79,056 KB |
testcase_17 | AC | 1,346 ms
117,964 KB |
testcase_18 | AC | 1,285 ms
107,604 KB |
testcase_19 | AC | 1,247 ms
107,792 KB |
testcase_20 | AC | 1,224 ms
105,748 KB |
testcase_21 | AC | 1,268 ms
105,920 KB |
testcase_22 | AC | 1,048 ms
102,364 KB |
testcase_23 | AC | 1,063 ms
102,932 KB |
testcase_24 | AC | 1,082 ms
103,296 KB |
testcase_25 | AC | 1,416 ms
108,572 KB |
testcase_26 | AC | 1,439 ms
108,460 KB |
testcase_27 | AC | 1,368 ms
108,544 KB |
testcase_28 | AC | 1,352 ms
108,716 KB |
testcase_29 | AC | 1,481 ms
120,796 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])