結果

問題 No.1494 LCS on Tree
ユーザー penguinmanpenguinman
提出日時 2021-04-25 03:16:37
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,229 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,976 KB
実行使用メモリ 144,828 KB
最終ジャッジ日時 2024-07-04 09:24:34
合計ジャッジ時間 16,019 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 RE -
testcase_04 AC 437 ms
140,704 KB
testcase_05 AC 441 ms
140,672 KB
testcase_06 AC 427 ms
140,436 KB
testcase_07 AC 451 ms
141,052 KB
testcase_08 AC 441 ms
140,704 KB
testcase_09 AC 433 ms
140,420 KB
testcase_10 AC 451 ms
141,096 KB
testcase_11 AC 440 ms
140,928 KB
testcase_12 AC 420 ms
140,800 KB
testcase_13 AC 457 ms
140,444 KB
testcase_14 RE -
testcase_15 AC 833 ms
143,104 KB
testcase_16 AC 441 ms
142,516 KB
testcase_17 AC 430 ms
142,880 KB
testcase_18 AC 425 ms
142,908 KB
testcase_19 AC 38 ms
52,224 KB
testcase_20 AC 38 ms
52,480 KB
testcase_21 AC 38 ms
52,224 KB
testcase_22 AC 38 ms
52,352 KB
testcase_23 AC 38 ms
52,736 KB
testcase_24 AC 38 ms
51,968 KB
testcase_25 AC 38 ms
52,352 KB
testcase_26 AC 39 ms
52,224 KB
testcase_27 AC 39 ms
52,352 KB
testcase_28 AC 37 ms
52,608 KB
testcase_29 AC 37 ms
52,224 KB
testcase_30 RE -
testcase_31 AC 448 ms
142,464 KB
testcase_32 AC 449 ms
142,492 KB
testcase_33 AC 453 ms
142,268 KB
testcase_34 AC 443 ms
142,208 KB
testcase_35 AC 104 ms
79,756 KB
testcase_36 AC 219 ms
95,988 KB
testcase_37 AC 103 ms
79,416 KB
testcase_38 AC 163 ms
90,848 KB
testcase_39 AC 267 ms
105,856 KB
testcase_40 AC 143 ms
85,632 KB
testcase_41 AC 347 ms
123,904 KB
testcase_42 AC 134 ms
85,504 KB
testcase_43 AC 377 ms
119,368 KB
testcase_44 AC 273 ms
107,880 KB
testcase_45 AC 478 ms
140,592 KB
testcase_46 AC 468 ms
140,216 KB
testcase_47 AC 463 ms
140,288 KB
testcase_48 AC 459 ms
140,540 KB
testcase_49 AC 466 ms
140,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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+1)]
rev = [[0]*(M+1) for i in range(N+1)]
ans = 0

def dfs(now):
    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):
            global ans
            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