結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 RE -
testcase_04 AC 442 ms
140,452 KB
testcase_05 AC 428 ms
140,928 KB
testcase_06 AC 446 ms
140,312 KB
testcase_07 AC 448 ms
140,924 KB
testcase_08 AC 442 ms
140,800 KB
testcase_09 AC 436 ms
140,556 KB
testcase_10 AC 446 ms
140,456 KB
testcase_11 AC 435 ms
140,800 KB
testcase_12 AC 430 ms
141,056 KB
testcase_13 AC 451 ms
140,824 KB
testcase_14 RE -
testcase_15 AC 793 ms
143,104 KB
testcase_16 AC 455 ms
142,772 KB
testcase_17 AC 453 ms
142,584 KB
testcase_18 AC 442 ms
142,464 KB
testcase_19 AC 38 ms
52,224 KB
testcase_20 AC 37 ms
52,352 KB
testcase_21 AC 39 ms
52,224 KB
testcase_22 AC 38 ms
52,224 KB
testcase_23 AC 39 ms
52,352 KB
testcase_24 AC 39 ms
52,352 KB
testcase_25 AC 39 ms
52,224 KB
testcase_26 AC 39 ms
52,096 KB
testcase_27 AC 39 ms
52,352 KB
testcase_28 AC 38 ms
52,352 KB
testcase_29 AC 40 ms
52,096 KB
testcase_30 RE -
testcase_31 AC 476 ms
142,976 KB
testcase_32 AC 461 ms
142,744 KB
testcase_33 AC 459 ms
142,656 KB
testcase_34 AC 454 ms
142,208 KB
testcase_35 AC 108 ms
79,488 KB
testcase_36 AC 214 ms
95,984 KB
testcase_37 AC 112 ms
79,360 KB
testcase_38 AC 168 ms
91,096 KB
testcase_39 AC 280 ms
105,880 KB
testcase_40 AC 141 ms
85,632 KB
testcase_41 AC 343 ms
124,160 KB
testcase_42 AC 137 ms
85,248 KB
testcase_43 AC 384 ms
118,860 KB
testcase_44 AC 283 ms
107,904 KB
testcase_45 AC 466 ms
140,416 KB
testcase_46 AC 487 ms
140,416 KB
testcase_47 AC 482 ms
140,440 KB
testcase_48 AC 469 ms
140,720 KB
testcase_49 AC 468 ms
140,544 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)
        global dp
        global rev
        global ans
        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