結果
問題 | No.1283 Extra Fee |
ユーザー | AEn |
提出日時 | 2022-08-31 13:59:27 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,129 bytes |
コンパイル時間 | 444 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 192,108 KB |
最終ジャッジ日時 | 2024-11-08 05:38:00 |
合計ジャッジ時間 | 11,751 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
59,008 KB |
testcase_01 | AC | 47 ms
53,888 KB |
testcase_02 | AC | 48 ms
54,144 KB |
testcase_03 | AC | 47 ms
53,504 KB |
testcase_04 | AC | 47 ms
53,888 KB |
testcase_05 | AC | 46 ms
53,888 KB |
testcase_06 | WA | - |
testcase_07 | AC | 47 ms
54,016 KB |
testcase_08 | AC | 52 ms
55,040 KB |
testcase_09 | AC | 50 ms
54,528 KB |
testcase_10 | AC | 49 ms
54,656 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 274 ms
84,224 KB |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
from collections import deque from collections import defaultdict N, M = map(int, input().split()) d = defaultdict(int) s = set() for i in range(M): h, w, c = map(int, input().split()) h-=1;w-=1 s.add((h, w)) d[str(h)+'_'+str(w)] = c cost = [[[float('inf'), 0] for _ in range(N)] for _ in range(N)] cost[0][0][0] = 0 q = deque() q.append((0, 0)) xx = [0,1,0,-1] yy = [1,0,-1,0] while q: x, y = q.popleft() for px, py in zip(xx, yy): cx = x+px cy = y+py if 0<=cx<N and 0<=cy<N: if (cx, cy) in s: c = d[str(cx)+'_'+str(cy)] if cost[cx][cy][0]-cost[cx][cy][1]>cost[x][y][0]+1+c-max(cost[x][y][1], c): cost[cx][cy][0] = cost[x][y][0]+1+c cost[cx][cy][1] = max(cost[x][y][1], c) q.append((cx, cy)) else: if cost[cx][cy][0]-cost[cx][cy][1]>cost[x][y][0]+1-cost[x][y][1]: cost[cx][cy][0] = cost[x][y][0]+1 cost[cx][cy][1] = cost[x][y][1] q.append((cx, cy)) print(cost[-1][-1][0]-cost[-1][-1][1])