結果
問題 | No.1283 Extra Fee |
ユーザー | tcltk |
提出日時 | 2021-01-21 06:57:07 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,045 bytes |
コンパイル時間 | 572 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 249,672 KB |
最終ジャッジ日時 | 2024-06-06 12:50:53 |
合計ジャッジ時間 | 6,328 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 145 ms
96,132 KB |
testcase_01 | AC | 121 ms
88,716 KB |
testcase_02 | AC | 132 ms
89,600 KB |
testcase_03 | AC | 125 ms
88,900 KB |
testcase_04 | AC | 117 ms
88,960 KB |
testcase_05 | AC | 120 ms
89,108 KB |
testcase_06 | AC | 161 ms
90,112 KB |
testcase_07 | AC | 120 ms
88,712 KB |
testcase_08 | AC | 171 ms
90,496 KB |
testcase_09 | AC | 189 ms
90,476 KB |
testcase_10 | AC | 147 ms
90,112 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#region Header #!/usr/bin/env python3 # from typing import * import sys import io import math import collections import decimal import itertools from queue import PriorityQueue import bisect import heapq def input(): return sys.stdin.readline()[:-1] sys.setrecursionlimit(1000000) #endregion # _INPUT = """10 34 # 7 5 2286 # 2 2 3140 # 9 3 4600 # 9 6 5277 # 9 4 9057 # 1 6 1156 # 1 7 2356 # 6 10 2106 # 9 5 1192 # 4 6 9022 # 8 2 3221 # 8 9 7792 # 4 3 609 # 4 7 6593 # 2 6 3097 # 8 6 4348 # 2 10 213 # 7 3 7105 # 10 9 4412 # 6 4 4410 # 8 5 2870 # 2 5 2185 # 2 7 8469 # 7 10 3727 # 5 5 4076 # 10 6 2106 # 1 4 385 # 1 8 9753 # 6 7 3240 # 9 2 4081 # 3 7 4784 # 6 1 6748 # 5 10 6062 # 2 3 7218 # """ # sys.stdin = io.StringIO(_INPUT) def f(N, P): dist = [[10**10 for _ in range(N)] for _ in range(N)] hq = [] heapq.heappush(hq, (0, (0, 0))) dist[0][0] = 0 path = [[None for _ in range(N)] for _ in range(N)] while hq: d, (h, w) = heapq.heappop(hq) if d > dist[h][w]: continue for (dh, dw) in [(-1, 0), (1, 0), (0, -1), (0, 1)]: (h1, w1) = (h + dh, w + dw) if 0 <= h1 <= N-1 and 0 <= w1 <= N-1: d1 = dist[h][w] + P[h1][w1] if d1 < dist[h1][w1]: dist[h1][w1] = d1 path[h1][w1] = (h, w) heapq.heappush(hq, (d1, (h1, w1))) return dist[N-1][N-1] def main(): N, M = map(int, input().split()) P = [[1 for _ in range(N)] for _ in range(N)] P[0][0] = 0 points = [] for _ in range(M): h, w, c = map(int, input().split()) h -= 1 w -= 1 points.append((h, w, c)) P[h][w] = c + 1 n_min = 10**10 for i in range(M): h, w, c = points[i] P[h][w] = 1 n = f(N, P) n_min = min(n_min, n) P[h][w] = c + 1 print(n_min) if __name__ == '__main__': main()