結果
問題 | No.263 Common Palindromes Extra |
ユーザー | MitI_7 |
提出日時 | 2016-03-17 21:24:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 179 ms / 2,000 ms |
コード長 | 1,864 bytes |
コンパイル時間 | 866 ms |
コンパイル使用メモリ | 79,556 KB |
実行使用メモリ | 146,772 KB |
最終ジャッジ日時 | 2024-05-07 08:02:52 |
合計ジャッジ時間 | 2,201 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
9,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 19 ms
19,724 KB |
testcase_04 | AC | 80 ms
85,252 KB |
testcase_05 | AC | 104 ms
85,260 KB |
testcase_06 | AC | 11 ms
10,932 KB |
testcase_07 | AC | 106 ms
100,092 KB |
testcase_08 | AC | 123 ms
100,056 KB |
testcase_09 | AC | 127 ms
115,512 KB |
testcase_10 | AC | 179 ms
146,772 KB |
testcase_11 | AC | 74 ms
85,256 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <map> #define ll long long #define FOR(i,a,b) for(int i= (a); i<((int)b); ++i) using namespace std; struct Node { map<char, ll> next; ll len = 0; ll sl = 0; }; class PalindromicTree { public: string str; vector<Node> tree; ll l_idx, ms_idx; PalindromicTree(string s) : str(s) { this->tree.resize(s.size() + 2); this->l_idx = 1; this->ms_idx = 1; this->tree[0].len = -1; } void addLetter(int pos) { char nc = this->str[pos]; ll A = ms_idx; while (true) { int p = pos - 1 - tree[A].len; if (p >= 0 && this->str[p] == nc) break; A = tree[A].sl; } if (this->tree[A].next[nc] != 0) { ms_idx = tree[A].next[nc]; return; } ms_idx = ++this->l_idx; Node &nn = tree[this->l_idx]; nn.len = tree[A].len + 2; tree[A].next[nc] = this->l_idx; if (nn.len == 1) { nn.sl = 1; return;} ll B = A; while (true) { B = tree[B].sl; int p = pos - 1 - tree[B].len; if (p >= 0 && this->str[p] == nc) break; } nn.sl = tree[B].next[nc]; } }; int main() { string s, t, u; cin >> s >> t; u = s + "<>" + t; vector<vector<ll>> dp(2, vector<ll>(u.size() + 2, 0)); PalindromicTree pt(u); FOR(i, 0, u.size()) { pt.addLetter(i); if (i < s.size()) { dp[0][pt.ms_idx]++; } if (i >= s.size() + 1) { dp[1][pt.ms_idx]++; } } ll ans = 0; for (int i = pt.l_idx; i >= 2; i--) { ans += dp[0][i] * dp[1][i]; dp[0][pt.tree[i].sl] += dp[0][i]; dp[1][pt.tree[i].sl] += dp[1][i]; } cout << ans << endl; return 0; }