結果
問題 | No.1494 LCS on Tree |
ユーザー | Iván Soto |
提出日時 | 2021-05-10 13:45:36 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,433 bytes |
コンパイル時間 | 2,241 ms |
コンパイル使用メモリ | 215,716 KB |
実行使用メモリ | 35,072 KB |
最終ジャッジ日時 | 2024-09-19 18:13:16 |
合計ジャッジ時間 | 5,547 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 63 ms
35,072 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 | 1 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 1 ms
5,376 KB |
testcase_30 | AC | 66 ms
35,072 KB |
testcase_31 | AC | 65 ms
34,944 KB |
testcase_32 | AC | 65 ms
34,944 KB |
testcase_33 | AC | 63 ms
34,816 KB |
testcase_34 | AC | 66 ms
34,944 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 | 70 ms
34,688 KB |
testcase_46 | AC | 71 ms
34,816 KB |
testcase_47 | AC | 70 ms
34,688 KB |
testcase_48 | AC | 67 ms
34,816 KB |
testcase_49 | AC | 67 ms
34,816 KB |
ソースコード
/** * author: ivanzuki * created: Sun May 09 2021 **/ #include <bits/stdc++.h> using namespace std; string to_string(string s) { return '"' + s + '"'; } string to_string(const char* s) { return to_string((string) s); } string to_string(bool b) { return (b ? "true" : "false"); } template <typename A, typename B> string to_string(pair<A, B> p) { return "(" + to_string(p.first) + ", " + to_string(p.second) + ")"; } template <typename A> string to_string(A v) { bool first = true; string res = "{"; for (const auto &x : v) { if (!first) { res += ", "; } first = false; res += to_string(x); } res += "}"; return res; } void debug_out() { cerr << endl; } template <typename Head, typename... Tail> void debug_out(Head H, Tail... T) { cerr << " " << to_string(H); debug_out(T...); } template<typename T> void dout(string name, int idx, T arg) { cerr << name << " = " << to_string(arg); } template<typename T1, typename... T2> void dout(string names, int idx, T1 arg, T2... args) { cerr << names.substr(0, names.find(',')) << " = " << to_string(arg) << ", "; dout(names.substr(names.find(',') + 2), idx + 1, args...); } #ifdef LOCAL #define debug(...) cerr << "[", dout(#__VA_ARGS__, 0, __VA_ARGS__), cerr << "]" << endl; #else #define debug(...) 42 #endif int main() { ios_base::sync_with_stdio(false); cin.tie(0); int n; cin >> n; string s; cin >> s; vector<vector<pair<int, char>>> g(n); for (int i = 0; i < n - 1; i++) { int a, b; char c; cin >> a >> b >> c; --a; --b; g[a].emplace_back(b, c); g[b].emplace_back(a, c); } vector<int> ans(n); vector<vector<int>> pref(n, vector<int>((int) s.size())), suff(n, vector<int>((int) s.size())); function<void(int, int)> DFS = [&](int v, int pv) { for (const auto& e : g[v]) { int u = e.first; char c = e.second; if (u == pv) { continue; } DFS(u, v); for (int k = 0; k <= (int) s.size(); k++) { ans[v] = max(ans[v], (k - 1 < 0 ? 0 : pref[v][k - 1]) + (k < (int) s.size() ? suff[u][k] : 0)); ans[v] = max(ans[v], (k - 1 < 0 ? 0 : pref[u][k - 1]) + (k < (int) s.size() ? suff[v][k] : 0)); if (k < (int) s.size() && s[k] == c) { ans[v] = max(ans[v], (k - 1 < 0 ? 0 : pref[v][k - 1]) + (k + 1 < (int) s.size() ? suff[u][k + 1] : 0)); ans[v] = max(ans[v], (k - 1 < 0 ? 0 : pref[u][k - 1]) + (k + 1 < (int) s.size() ? suff[v][k + 1] : 0)); } } for (int k = 0; k < (int) s.size(); k++) { pref[v][k] = max(pref[v][k], pref[u][k]); if (s[k] == c) { pref[v][k] = max(pref[v][k], 1 + (k - 1 < 0 ? 0 : pref[u][k - 1])); } if (k > 0) { pref[v][k] = max(pref[v][k], pref[v][k - 1]); } } for (int k = (int) s.size() - 1; k >= 0; k--) { suff[v][k] = max(suff[v][k], suff[u][k]); if (s[k] == c) { suff[v][k] = max(suff[v][k], 1 + (k + 1 <= (int) s.size() - 1 ? suff[u][k + 1] : 0)); } if (k + 1 <= (int) s.size() - 1) { suff[v][k] = max(suff[v][k], suff[v][k + 1]); } } } ans[v] = max({ans[v], *max_element(pref[v].begin(), pref[v].end()), *max_element(suff[v].begin(), suff[v].end())}); }; DFS(0, -1); debug(pref, suff, ans); cout << *max_element(ans.begin(), ans.end()) << '\n'; return 0; }