結果
問題 | No.1449 新プロランド |
ユーザー | terasa |
提出日時 | 2022-11-03 16:19:06 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,647 bytes |
コンパイル時間 | 183 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 240,712 KB |
最終ジャッジ日時 | 2024-06-06 11:11:44 |
合計ジャッジ時間 | 12,076 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 84 ms
73,600 KB |
testcase_01 | AC | 171 ms
85,504 KB |
testcase_02 | AC | 257 ms
94,672 KB |
testcase_03 | AC | 159 ms
85,376 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 800 ms
176,776 KB |
testcase_07 | AC | 498 ms
155,520 KB |
testcase_08 | RE | - |
testcase_09 | AC | 511 ms
142,660 KB |
testcase_10 | RE | - |
testcase_11 | AC | 390 ms
174,664 KB |
testcase_12 | AC | 1,010 ms
204,024 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 930 ms
192,188 KB |
testcase_16 | AC | 674 ms
154,008 KB |
testcase_17 | RE | - |
testcase_18 | AC | 104 ms
81,068 KB |
testcase_19 | AC | 174 ms
124,672 KB |
testcase_20 | AC | 84 ms
73,728 KB |
testcase_21 | AC | 508 ms
162,736 KB |
testcase_22 | AC | 198 ms
89,472 KB |
testcase_23 | AC | 313 ms
194,944 KB |
testcase_24 | AC | 411 ms
117,888 KB |
testcase_25 | AC | 249 ms
100,100 KB |
testcase_26 | RE | - |
testcase_27 | AC | 1,248 ms
240,712 KB |
testcase_28 | RE | - |
ソースコード
from typing import List, Tuple, Optional import sys import itertools import heapq import bisect from collections import deque, defaultdict from functools import lru_cache, cmp_to_key input = sys.stdin.readline # for AtCoder Easy test if __file__ != 'prog.py': # sys.setrecursionlimit(10 ** 6) pass def readints(): return map(int, input().split()) def readlist(): return list(readints()) def readstr(): return input().rstrip() class Dijkstra: def __init__(self, N: int, E: List[List[Tuple[int, int]]], start: int = 0, inf: int = 1 << 50): self.N = N self.E = E self.start = start self.inf = inf self.C = [self.inf] * N self.prev = [None] * N self._calculate() def get_cost(self, i: int) -> Optional[int]: """return cost to i-th vertex. return inf if the vertex is unreachable.""" return self.C[i] def get_path(self, i) -> Optional[List[int]]: """return shortest path to i-th vertex if reachable otherwise None""" if not self.reachable(i): return None p = [] cur = i while cur is not None: p.append(cur) cur = self.prev[cur] p.reverse() return p def reachable(self, i) -> bool: """return whether i-th vertex is reachable from start""" return self.C[i] < self.inf def _calculate(self) -> None: h = [(0, self.start)] self.C[self.start] = 0 visited = [False] * self.N while h: _, v = heapq.heappop(h) if visited[v] is True: continue visited[v] = True for c, d in self.E[v]: if self.C[d] > self.C[v] + c: self.C[d] = self.C[v] + c self.prev[d] = v heapq.heappush(h, (self.C[d], d)) N, M = readints() edges = [tuple(readints()) for _ in range(M)] T = readlist() L = 10000 E = [[] for _ in range(N * (L + 1))] for a, b, c in edges: a -= 1 b -= 1 def h(i, t): return i * (L + 1) + t if a != N - 1: for j in range(L + 1): if j + T[a] > L: break cost = T[a] + c // (j + T[a]) E[h(a, j)].append((cost, h(b, j + T[a]))) if b != N - 1: for j in range(L + 1): if j + T[b] > L: break cost = T[b] + c // (j + T[b]) E[h(b, j)].append((cost, h(a, j + T[b]))) solver = Dijkstra(N * (L + 1), E) ans = solver.inf for j in range(L + 1): ans = min(ans, solver.get_cost((N - 1) * (L + 1) + j)) print(ans)