結果
問題 | No.1283 Extra Fee |
ユーザー | tcltk |
提出日時 | 2021-01-21 07:33:49 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,981 bytes |
コンパイル時間 | 985 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 117,792 KB |
最終ジャッジ日時 | 2024-06-06 13:17:03 |
合計ジャッジ時間 | 11,327 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 118 ms
88,960 KB |
testcase_01 | AC | 131 ms
88,960 KB |
testcase_02 | AC | 121 ms
88,784 KB |
testcase_03 | AC | 123 ms
88,960 KB |
testcase_04 | AC | 122 ms
88,960 KB |
testcase_05 | AC | 131 ms
88,776 KB |
testcase_06 | AC | 132 ms
88,832 KB |
testcase_07 | AC | 123 ms
88,832 KB |
testcase_08 | AC | 125 ms
88,960 KB |
testcase_09 | AC | 121 ms
88,960 KB |
testcase_10 | AC | 123 ms
88,856 KB |
testcase_11 | AC | 268 ms
91,776 KB |
testcase_12 | AC | 227 ms
91,008 KB |
testcase_13 | AC | 189 ms
90,880 KB |
testcase_14 | AC | 280 ms
92,160 KB |
testcase_15 | AC | 340 ms
93,568 KB |
testcase_16 | AC | 217 ms
90,368 KB |
testcase_17 | AC | 1,420 ms
116,684 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 1,006 ms
99,712 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 1,509 ms
117,792 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 7 # 1 2 5 # 1 3 8 # 2 1 7 # 2 2 3 # 2 3 9 # 3 1 11 # 3 2 2 # """ # 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 # dp[0] : 無料の権利を使っていない # dp[1] : 無料の権利を使った dp = [[[10**10 for _ in range(N)] for _ in range(N)] for _ in range(2)] hq = [] heapq.heappush(hq, (0, (0, 0, 0))) dp[0][0][0] = 0 dp[1][0][0] = 0 while hq: d, (flag, h, w) = heapq.heappop(hq) if d > dp[flag][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: if flag == 0: d1 = dp[0][h][w] + P[h1][w1] if d1 < dp[0][h1][w1]: dp[0][h1][w1] = d1 heapq.heappush(hq, (d1, (0, h1, w1))) d2 = dp[0][h][w] + 1 if d2 < dp[1][h1][w1]: dp[1][h1][w1] = d2 heapq.heappush(hq, (d2, (1, h1, w1))) else: d1 = dp[1][h][w] + P[h1][w1] if d1 < dp[1][h1][w1]: dp[1][h1][w1] = d1 heapq.heappush(hq, (d1, (1, h1, w1))) print(min(dp[0][N-1][N-1], dp[1][N-1][N-1])) if __name__ == '__main__': main()