結果
問題 | No.263 Common Palindromes Extra |
ユーザー | Ricky_pon |
提出日時 | 2022-06-08 15:18:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 157 ms / 2,000 ms |
コード長 | 3,465 bytes |
コンパイル時間 | 2,525 ms |
コンパイル使用メモリ | 216,380 KB |
実行使用メモリ | 59,744 KB |
最終ジャッジ日時 | 2024-09-21 05:07:45 |
合計ジャッジ時間 | 4,428 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 16 ms
5,376 KB |
testcase_04 | AC | 73 ms
6,428 KB |
testcase_05 | AC | 124 ms
6,044 KB |
testcase_06 | AC | 8 ms
5,376 KB |
testcase_07 | AC | 117 ms
32,808 KB |
testcase_08 | AC | 157 ms
32,556 KB |
testcase_09 | AC | 138 ms
59,704 KB |
testcase_10 | AC | 131 ms
59,744 KB |
testcase_11 | AC | 51 ms
5,664 KB |
ソースコード
#include <bits/stdc++.h> #include <map> #include <string> #include <vector> namespace rklib { struct PalindromicTree { const int rootm1 = 0, root0 = 1; std::vector<int> len = {-1, 0}, link = {rootm1, rootm1}; std::vector<std::map<char, int>> nxt = {{}, {}}; int sz = 2, last = root0; std::string s; PalindromicTree() {} PalindromicTree(std::string& t) { for (auto c : t) add(c); } void create_node() { ++sz; len.resize(sz); link.resize(sz); nxt.resize(sz); } void add(char c) { while (last != rootm1) { int idx = int(s.size()) - len[last] - 1; if (idx >= 0 && s[idx] == c) break; last = link[last]; } if (nxt[last].find(c) != nxt[last].end()) { last = nxt[last][c]; s += c; return; } create_node(); int now = sz - 1; len[now] = len[last] + 2; int p = link[last]; while (p != rootm1) { int idx = int(s.size()) - len[p] - 1; if (idx >= 0 && s[idx] == c) break; p = link[p]; } link[now] = (nxt[p].find(c) == nxt[p].end() ? root0 : nxt[p][c]); nxt[last][c] = now; last = now; s += c; } std::vector<int> count(std::string& t) { std::vector<int> res(sz, 0); int now = rootm1; for (int i = 0; i < int(t.size()); ++i) { char c = t[i]; if (nxt[rootm1].find(c) == nxt[rootm1].end()) now = rootm1; while (now != rootm1) { int idx = i - len[now] - 1; if (idx >= 0 && t[idx] == c && nxt[now].find(c) != nxt[now].end()) break; now = link[now]; } now = (nxt[now].find(c) == nxt[now].end() ? root0 : nxt[now][c]); ++res[now]; } for (int i = int(res.size()) - 1; i >= 1; i--) { res[link[i]] += res[i]; } return res; } }; } // namespace rklib #include <algorithm> #include <cassert> #include <vector> namespace rklib { template <class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; } template <class T> bool chmin(T &a, const T &b) { if (a > b) { a = b; return true; } return false; } template <class T> bool chmin_non_negative(T &a, const T &b) { if (a < 0 || a > b) { a = b; return true; } return false; } template <class T> T div_floor(T a, T b) { if (b < 0) a *= -1, b *= -1; return a >= 0 ? a / b : (a + 1) / b - 1; } template <class T> T div_ceil(T a, T b) { if (b < 0) a *= -1, b *= -1; return a > 0 ? (a - 1) / b + 1 : a / b; } } // namespace rklib #define For(i, a, b) for (int i = (int)(a); (i) < (int)(b); ++(i)) #define rFor(i, a, b) for (int i = (int)(a)-1; (i) >= (int)(b); --(i)) #define rep(i, n) For(i, 0, n) #define rrep(i, n) rFor(i, n, 0) #define fi first #define se second using namespace std; using namespace rklib; using lint = long long; using pii = pair<int, int>; using pll = pair<lint, lint>; int main() { string s, t; cin >> s >> t; PalindromicTree pt(s); auto cnt_s = pt.count(s); auto cnt_t = pt.count(t); lint ans = 0; For(i, 2, cnt_s.size()) ans += lint(cnt_s[i]) * lint(cnt_t[i]); printf("%lld\n", ans); }