結果
問題 | No.1494 LCS on Tree |
ユーザー | snow39 |
提出日時 | 2021-04-30 22:57:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,526 bytes |
コンパイル時間 | 1,303 ms |
コンパイル使用メモリ | 125,260 KB |
実行使用メモリ | 461,824 KB |
最終ジャッジ日時 | 2024-07-19 02:43:59 |
合計ジャッジ時間 | 30,175 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1,021 ms
452,096 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | WA | - |
testcase_24 | AC | 1 ms
6,944 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 1 ms
6,940 KB |
testcase_27 | WA | - |
testcase_28 | AC | 2 ms
6,944 KB |
testcase_29 | AC | 2 ms
6,940 KB |
testcase_30 | AC | 1,027 ms
451,968 KB |
testcase_31 | AC | 962 ms
390,272 KB |
testcase_32 | AC | 921 ms
285,952 KB |
testcase_33 | AC | 908 ms
273,664 KB |
testcase_34 | AC | 898 ms
273,536 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | AC | 1,239 ms
99,328 KB |
testcase_46 | AC | 1,209 ms
99,328 KB |
testcase_47 | AC | 1,193 ms
99,456 KB |
testcase_48 | AC | 1,204 ms
99,328 KB |
testcase_49 | AC | 1,204 ms
99,328 KB |
ソースコード
#include <iostream> #include <algorithm> #include <string> #include <vector> #include <cmath> #include <map> #include <queue> #include <iomanip> #include <set> #include <tuple> #define mkp make_pair #define mkt make_tuple #define rep(i,n) for(int i = 0; i < (n); ++i) #define all(v) v.begin(),v.end() using namespace std; typedef long long ll; const ll MOD=1e9+7; template<class T> void chmin(T &a,const T &b){if(a>b) a=b;} template<class T> void chmax(T &a,const T &b){if(a<b) a=b;} int main(){ cin.tie(0); ios::sync_with_stdio(false); int N; cin>>N; string S; cin>>S; int M=S.size(); vector<vector<pair<int,int>>> g(N); rep(i,N-1){ int a,b; char c; cin>>a>>b>>c; a--;b--; int d=c-'a'; g[a].push_back(mkp(b,d)); g[b].push_back(mkp(a,d)); } auto solve = [&]() -> vector<vector<int>> { vector<vector<int>> last(M+1,vector<int>(26,-1)); for(int i=0;i<M;i++){ for(int j=0;j<26;j++){ last[i+1][j]=last[i][j]; } last[i+1][S[i]-'a']=i; } vector<vector<int>> dp(N,vector<int> (M+1,0)); auto dfs = [&](auto &&dfs,int now,int par)->void{ for(auto [nex,d]:g[now]){ if(nex==par) continue; dfs(dfs,nex,now); for(int k=0;k<=M;k++) chmax(dp[now][k],dp[nex][k]); for(int k=0;k<=M;k++){ int lt=last[k][d]; if(lt==-1) continue; chmax(dp[now][k],dp[nex][lt]+1); } } }; dfs(dfs,0,-1); return dp; }; vector<vector<int>> sp=solve(); reverse(all(S)); vector<vector<int>> tp=solve(); auto calc_ans = [&](auto &&calc_ans,int now,int par)->int{ vector<vector<pair<int,int>>> ss(M+1),tt(M+1); rep(i,M+1){ ss[i].push_back(mkp(0,-1)); tt[i].push_back(mkp(0,-2)); } for(auto [nex,d]:g[now]){ if(nex==par) continue; calc_ans(calc_ans,nex,now); for(int k=0;k<=M;k++){ ss[k].push_back(mkp(sp[nex][k],nex)); tt[k].push_back(mkp(tp[nex][k],nex)); } } rep(i,M+1){ sort(all(ss[i])); reverse(all(ss[i])); sort(all(tt[i])); reverse(all(tt[i])); } int res=max(sp[now][M],tp[now][M]); for(int k=0;k<=M;k++){ auto [f,ft]=ss[k][0]; auto [s,st]=tt[M-k][0]; if(ft==st){ if(tt[M-k].size()>=2) chmax(res,f+tt[M-k][1].first); if(ss[k].size()>=2) chmax(res,s+ss[k][1].first); }else{ chmax(res,f+s); } } return res; }; int ans=calc_ans(calc_ans,0,-1); cout<<ans<<endl; return 0; }