結果
問題 | No.1494 LCS on Tree |
ユーザー | 草苺奶昔 |
提出日時 | 2023-03-14 10:10:08 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 697 ms / 2,000 ms |
コード長 | 3,411 bytes |
コンパイル時間 | 196 ms |
コンパイル使用メモリ | 82,320 KB |
実行使用メモリ | 296,116 KB |
最終ジャッジ日時 | 2024-11-20 15:10:36 |
合計ジャッジ時間 | 21,049 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 66 ms
67,456 KB |
testcase_01 | AC | 65 ms
67,968 KB |
testcase_02 | AC | 61 ms
67,456 KB |
testcase_03 | AC | 620 ms
258,948 KB |
testcase_04 | AC | 586 ms
269,240 KB |
testcase_05 | AC | 601 ms
269,568 KB |
testcase_06 | AC | 594 ms
269,960 KB |
testcase_07 | AC | 609 ms
259,712 KB |
testcase_08 | AC | 610 ms
269,568 KB |
testcase_09 | AC | 617 ms
259,224 KB |
testcase_10 | AC | 603 ms
269,440 KB |
testcase_11 | AC | 653 ms
258,340 KB |
testcase_12 | AC | 589 ms
270,208 KB |
testcase_13 | AC | 589 ms
269,928 KB |
testcase_14 | AC | 670 ms
268,416 KB |
testcase_15 | AC | 609 ms
269,892 KB |
testcase_16 | AC | 594 ms
269,512 KB |
testcase_17 | AC | 598 ms
269,524 KB |
testcase_18 | AC | 616 ms
269,228 KB |
testcase_19 | AC | 63 ms
67,456 KB |
testcase_20 | AC | 59 ms
67,456 KB |
testcase_21 | AC | 59 ms
68,096 KB |
testcase_22 | AC | 59 ms
67,456 KB |
testcase_23 | AC | 58 ms
67,584 KB |
testcase_24 | AC | 59 ms
68,224 KB |
testcase_25 | AC | 59 ms
67,968 KB |
testcase_26 | AC | 60 ms
67,712 KB |
testcase_27 | AC | 59 ms
67,456 KB |
testcase_28 | AC | 58 ms
67,584 KB |
testcase_29 | AC | 59 ms
68,224 KB |
testcase_30 | AC | 628 ms
269,056 KB |
testcase_31 | AC | 622 ms
269,568 KB |
testcase_32 | AC | 593 ms
258,352 KB |
testcase_33 | AC | 588 ms
259,712 KB |
testcase_34 | AC | 623 ms
269,188 KB |
testcase_35 | AC | 104 ms
84,992 KB |
testcase_36 | AC | 294 ms
124,712 KB |
testcase_37 | AC | 99 ms
81,920 KB |
testcase_38 | AC | 187 ms
118,528 KB |
testcase_39 | AC | 344 ms
160,408 KB |
testcase_40 | AC | 156 ms
94,592 KB |
testcase_41 | AC | 467 ms
215,168 KB |
testcase_42 | AC | 136 ms
94,336 KB |
testcase_43 | AC | 437 ms
190,336 KB |
testcase_44 | AC | 358 ms
158,636 KB |
testcase_45 | AC | 697 ms
296,116 KB |
testcase_46 | AC | 629 ms
295,716 KB |
testcase_47 | AC | 658 ms
295,652 KB |
testcase_48 | AC | 689 ms
295,552 KB |
testcase_49 | AC | 645 ms
295,552 KB |
ソースコード
from collections import defaultdict from typing import List, Tuple from typing import Callable, Generic, List, TypeVar T = TypeVar("T") class Rerooting(Generic[T]): __slots__ = ("adjList", "_n", "_decrement") def __init__(self, n: int, decrement: int = 0): self.adjList = [[] for _ in range(n)] self._n = n self._decrement = decrement def addEdge(self, u: int, v: int) -> None: u -= self._decrement v -= self._decrement self.adjList[u].append(v) self.adjList[v].append(u) def rerooting( self, e: Callable[[int], T], op: Callable[[T, T], T], composition: Callable[[T, int, int, int], T], root=0, ) -> List["T"]: root -= self._decrement assert 0 <= root < self._n parents = [-1] * self._n order = [root] stack = [root] while stack: cur = stack.pop() for next in self.adjList[cur]: if next == parents[cur]: continue parents[next] = cur order.append(next) stack.append(next) dp1 = [e(i) for i in range(self._n)] dp2 = [e(i) for i in range(self._n)] for cur in order[::-1]: res = e(cur) for next in self.adjList[cur]: if parents[cur] == next: continue dp2[next] = res res = op(res, composition(dp1[next], cur, next, 0)) res = e(cur) for next in self.adjList[cur][::-1]: if parents[cur] == next: continue dp2[next] = op(res, dp2[next]) res = op(res, composition(dp1[next], cur, next, 0)) dp1[cur] = res for newRoot in order[1:]: parent = parents[newRoot] dp2[newRoot] = composition(op(dp2[newRoot], dp2[parent]), parent, newRoot, 1) dp1[newRoot] = op(dp1[newRoot], dp2[newRoot]) return dp1 def lcsOnTree(n: int, edges: List[Tuple[int, int, str]], target: str) -> int: def e(root: int) -> List[int]: return [0] * (len(target) + 1) def op(childRes1: List[int], childRes2: List[int]) -> List[int]: res = childRes1[:] for i in range(len(res)): res[i] = max(res[i], childRes2[i]) return res def composition(fromRes: List[int], parent: int, cur: int, direction: int) -> List[int]: """direction: 0: cur -> parent, 1: parent -> cur""" from_, to = (cur, parent) if direction == 0 else (parent, cur) c = weights[from_][to] res = fromRes[:] for i in range(len(s) - 1, -1, -1): if s[i] == c: res[i + 1] = max(res[i + 1], res[i] + 1) for i in range(len(s)): res[i + 1] = max(res[i + 1], res[i]) return res R = Rerooting[List[int]](n) weights = [defaultdict(str) for _ in range(n)] for u, v, c in edges: R.addEdge(u, v) weights[u][v] = c weights[v][u] = c dp = R.rerooting(e=e, op=op, composition=composition, root=0) return max(v[-1] for v in dp) if __name__ == "__main__": n = int(input()) s = input() edges = [] for _ in range(n - 1): u, v, c = input().split() edges.append((int(u) - 1, int(v) - 1, c)) print(lcsOnTree(n, edges, s))