結果
問題 | No.1283 Extra Fee |
ユーザー | tcltk |
提出日時 | 2021-01-21 06:44:04 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,527 bytes |
コンパイル時間 | 362 ms |
コンパイル使用メモリ | 82,092 KB |
実行使用メモリ | 108,688 KB |
最終ジャッジ日時 | 2024-06-06 12:41:46 |
合計ジャッジ時間 | 8,069 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 118 ms
88,712 KB |
testcase_01 | AC | 116 ms
88,660 KB |
testcase_02 | AC | 122 ms
88,656 KB |
testcase_03 | AC | 125 ms
88,928 KB |
testcase_04 | AC | 119 ms
89,056 KB |
testcase_05 | AC | 128 ms
88,996 KB |
testcase_06 | WA | - |
testcase_07 | AC | 118 ms
88,992 KB |
testcase_08 | AC | 118 ms
88,780 KB |
testcase_09 | WA | - |
testcase_10 | AC | 122 ms
88,916 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 226 ms
92,960 KB |
testcase_16 | AC | 166 ms
90,364 KB |
testcase_17 | AC | 478 ms
107,764 KB |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 398 ms
102,380 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | AC | 502 ms
108,688 KB |
ソースコード
#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 = """3 2 # 2 2 100 # 2 3 200 # """ # sys.stdin = io.StringIO(_INPUT) def main(): N, M = map(int, input().split()) P = [[1 for _ in range(N)] for _ in range(N)] P[0][0] = 0 for _ in range(M): h, w, c = map(int, input().split()) h -= 1 w -= 1 P[h][w] = c + 1 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))) M = 0 (h, w) = (N-1, N-1) while (h, w) != (0, 0): M = max(M, P[h][w]) (h, w) = path[h][w] print(dist[N-1][N-1] - (M - 1)) if __name__ == '__main__': main()