結果

問題 No.1494 LCS on Tree
ユーザー kwm_tkwm_t
提出日時 2021-05-03 00:50:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 2,022 bytes
コンパイル時間 1,734 ms
コンパイル使用メモリ 171,584 KB
実行使用メモリ 71,116 KB
最終ジャッジ日時 2024-04-30 17:49:33
合計ジャッジ時間 6,600 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,524 KB
testcase_01 AC 4 ms
8,780 KB
testcase_02 AC 5 ms
8,648 KB
testcase_03 AC 114 ms
70,984 KB
testcase_04 AC 117 ms
70,856 KB
testcase_05 AC 118 ms
70,984 KB
testcase_06 AC 119 ms
71,112 KB
testcase_07 AC 118 ms
70,860 KB
testcase_08 AC 118 ms
70,856 KB
testcase_09 AC 116 ms
70,856 KB
testcase_10 AC 116 ms
70,980 KB
testcase_11 AC 116 ms
70,852 KB
testcase_12 AC 117 ms
70,856 KB
testcase_13 AC 116 ms
70,860 KB
testcase_14 AC 114 ms
70,984 KB
testcase_15 AC 113 ms
71,116 KB
testcase_16 AC 115 ms
70,984 KB
testcase_17 AC 114 ms
71,112 KB
testcase_18 AC 116 ms
70,980 KB
testcase_19 AC 5 ms
8,648 KB
testcase_20 AC 4 ms
9,164 KB
testcase_21 AC 5 ms
9,544 KB
testcase_22 AC 5 ms
9,032 KB
testcase_23 AC 4 ms
8,904 KB
testcase_24 AC 4 ms
8,776 KB
testcase_25 AC 5 ms
9,160 KB
testcase_26 AC 4 ms
9,284 KB
testcase_27 AC 4 ms
8,524 KB
testcase_28 AC 4 ms
8,396 KB
testcase_29 AC 4 ms
8,392 KB
testcase_30 AC 115 ms
70,984 KB
testcase_31 AC 114 ms
71,112 KB
testcase_32 AC 115 ms
71,112 KB
testcase_33 AC 115 ms
71,112 KB
testcase_34 AC 113 ms
70,984 KB
testcase_35 AC 14 ms
14,412 KB
testcase_36 AC 51 ms
39,620 KB
testcase_37 AC 12 ms
13,256 KB
testcase_38 AC 32 ms
24,264 KB
testcase_39 AC 69 ms
49,864 KB
testcase_40 AC 26 ms
22,476 KB
testcase_41 AC 90 ms
56,904 KB
testcase_42 AC 22 ms
18,628 KB
testcase_43 AC 93 ms
62,796 KB
testcase_44 AC 72 ms
51,656 KB
testcase_45 AC 119 ms
70,988 KB
testcase_46 AC 118 ms
70,860 KB
testcase_47 AC 118 ms
70,856 KB
testcase_48 AC 118 ms
70,984 KB
testcase_49 AC 118 ms
70,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
//#include "atcoder/all"
using namespace std;
//using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
//const bool debug = false;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }

struct Edge {
	int to;
	char c;
	Edge(int _to, char _c) :to(_to), c(_c) {}
};
int n; string s;
vector<Edge>g[200005];
long long dp[2005][2005];//頂点i,Sの頭j文字目まで
long long dpr[2005][2005];//頂点i,Sの頭j文字から
long long ans;
void dfs(int v, int p = -1) {
	for (Edge e : g[v]) {
		if (p == e.to) continue;
		dfs(e.to, v);
		rrep2(i, 1, s.size() + 1) {
			chmax(dp[e.to][i], dp[e.to][i - 1] + (s[i - 1] == e.c));
		}
		rep2(i, 1, s.size() + 1) {
			chmax(dp[e.to][i], dp[e.to][i - 1]);
		}
		rep2(i, 1, s.size() + 1) {
			chmax(dpr[e.to][i - 1], dpr[e.to][i] + (s[i - 1] == e.c));
		}
		rrep2(i, 1, s.size() + 1) {
			chmax(dpr[e.to][i - 1], dpr[e.to][i]);
		}
		rep(i, s.size() + 1) {
			chmax(ans, dp[v][i] + dpr[e.to][i]);
			chmax(ans, dp[e.to][i] + dpr[v][i]);
		}
		rep(i, s.size() + 1) {
			chmax(dp[v][i], dp[e.to][i]);
			chmax(dpr[v][i], dpr[e.to][i]);
		}
	}
}
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin >> n >> s;
	rep(i, n - 1) {
		int u, v; cin >> u >> v;
		u--; v--;
		char c; cin >> c;
		g[u].emplace_back(v, c);
		g[v].emplace_back(u, c);
	}
	ans = 0;
	dfs(0);
	cout << ans << endl;
	return 0;
}
0