結果

問題 No.1494 LCS on Tree
ユーザー penguinmanpenguinman
提出日時 2021-04-25 03:22:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 511 ms / 2,000 ms
コード長 1,301 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 145,152 KB
最終ジャッジ日時 2024-11-20 14:57:57
合計ジャッジ時間 17,009 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
59,648 KB
testcase_01 AC 47 ms
60,160 KB
testcase_02 AC 45 ms
59,904 KB
testcase_03 AC 494 ms
144,640 KB
testcase_04 AC 463 ms
142,720 KB
testcase_05 AC 468 ms
142,848 KB
testcase_06 AC 469 ms
142,568 KB
testcase_07 AC 466 ms
142,464 KB
testcase_08 AC 473 ms
142,592 KB
testcase_09 AC 457 ms
141,824 KB
testcase_10 AC 476 ms
142,592 KB
testcase_11 AC 469 ms
142,208 KB
testcase_12 AC 467 ms
142,336 KB
testcase_13 AC 470 ms
142,592 KB
testcase_14 AC 481 ms
145,152 KB
testcase_15 AC 476 ms
145,052 KB
testcase_16 AC 464 ms
144,256 KB
testcase_17 AC 469 ms
144,128 KB
testcase_18 AC 464 ms
144,640 KB
testcase_19 AC 45 ms
60,288 KB
testcase_20 AC 44 ms
60,160 KB
testcase_21 AC 46 ms
60,544 KB
testcase_22 AC 45 ms
60,288 KB
testcase_23 AC 46 ms
60,288 KB
testcase_24 AC 45 ms
59,648 KB
testcase_25 AC 44 ms
59,904 KB
testcase_26 AC 44 ms
59,776 KB
testcase_27 AC 46 ms
60,032 KB
testcase_28 AC 46 ms
59,904 KB
testcase_29 AC 45 ms
59,904 KB
testcase_30 AC 511 ms
144,640 KB
testcase_31 AC 490 ms
143,872 KB
testcase_32 AC 480 ms
144,384 KB
testcase_33 AC 474 ms
143,616 KB
testcase_34 AC 486 ms
144,128 KB
testcase_35 AC 109 ms
81,536 KB
testcase_36 AC 226 ms
97,792 KB
testcase_37 AC 109 ms
81,536 KB
testcase_38 AC 175 ms
92,800 KB
testcase_39 AC 282 ms
108,032 KB
testcase_40 AC 148 ms
87,680 KB
testcase_41 AC 371 ms
126,336 KB
testcase_42 AC 141 ms
87,372 KB
testcase_43 AC 393 ms
120,960 KB
testcase_44 AC 294 ms
110,336 KB
testcase_45 AC 498 ms
142,336 KB
testcase_46 AC 495 ms
142,208 KB
testcase_47 AC 499 ms
142,100 KB
testcase_48 AC 492 ms
142,336 KB
testcase_49 AC 496 ms
141,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import resource
sys.setrecursionlimit(3000)
N = int(input())
S = input()
flag = [False]*N
edge = [[]for i in range(N)]
char = [[]for i in range(N)]
for i in range(N-1):
    x, y, z = input().split()
    x = int(x)-1
    y = int(y)-1
    edge[x].append(y)
    edge[y].append(x)
    char[x].append(z)
    char[y].append(z)
M = len(S)
dp = [[0]*(M+1) for i in range(N)]
rev = [[0]*(M+1) for i in range(N)]
ans = 0

def dfs(now):
    global dp
    global rev
    global ans
    flag[now] = True
    for k in range(len(edge[now])):
        nex = edge[now][k]
        if flag[nex]:
            continue
        dfs(nex)
        for i in reversed(range(M)):
            if S[i] == char[now][k]:
                dp[nex][i+1] = max(dp[nex][i+1], dp[nex][i]+1)
        for i in range(M):
            dp[nex][i+1] = max(dp[nex][i+1], dp[nex][i])
        for i in range(M):
            if S[i] == char[now][k]:
                rev[nex][i] = max(rev[nex][i], rev[nex][i+1]+1)
        for i in reversed(range(M)):
            rev[nex][i] = max(rev[nex][i], rev[nex][i+1])
        for i in range(M+1):
            ans = max(ans, dp[now][i]+rev[nex][i], rev[now][i]+dp[nex][i])
            dp[now][i] = max(dp[now][i], dp[nex][i])
            rev[now][i] = max(rev[now][i], rev[nex][i])

dfs(0)
print(ans)
0