結果
問題 | No.263 Common Palindromes Extra |
ユーザー | chocorusk |
提出日時 | 2020-05-02 07:41:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,387 ms / 2,000 ms |
コード長 | 2,882 bytes |
コンパイル時間 | 1,894 ms |
コンパイル使用メモリ | 147,832 KB |
実行使用メモリ | 86,744 KB |
最終ジャッジ日時 | 2024-06-08 01:34:55 |
合計ジャッジ時間 | 6,284 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 3 ms
6,940 KB |
testcase_03 | AC | 33 ms
8,844 KB |
testcase_04 | AC | 145 ms
30,704 KB |
testcase_05 | AC | 123 ms
30,704 KB |
testcase_06 | AC | 16 ms
7,456 KB |
testcase_07 | AC | 452 ms
57,828 KB |
testcase_08 | AC | 435 ms
57,520 KB |
testcase_09 | AC | 1,310 ms
86,628 KB |
testcase_10 | AC | 1,387 ms
86,744 KB |
testcase_11 | AC | 98 ms
30,576 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; vector< int > manacher(const string &s) { int n=s.size(); vector< int > radius(n); int i = 0, j = 0; while(i < n) { while(i - j >= 0 && i + j < n && s[i - j] == s[i + j]) { ++j; } radius[i] = j; int k = 1; while(i - k >= 0 && i + k < n && k + radius[i - k] < j) { radius[i + k] = radius[i - k]; ++k; } i += k; j -= k; } return radius; } struct RollingHash{ const ll mask30=(1ll<<30)-1; const ll mask31=(1ll<<31)-1; const ll mod=(1ll<<61)-1; ll mul(ll a, ll b){ ll au=(a>>31), ad=(a&mask31), bu=(b>>31), bd=(b&mask31); ll mid=au*bd+ad*bu; ll midu=(mid>>30), midd=(mid&mask30); ll ret=((au*bu)<<1)+midu+(midd<<31)+ad*bd; ret=(ret>>61)+(ret&mod); if(ret>=mod) ret-=mod; return ret; } vector<ll> hash, power; RollingHash(const string &s, ll base=1000000007){ int sz=s.size(); hash.resize(sz+1); power.resize(sz+1); power[0]=1; for(int i=0; i<sz; i++){ power[i+1]=mul(power[i], base); hash[i+1]=mul(hash[i], base); hash[i+1]+=s[i]; if(hash[i+1]>=mod) hash[i+1]-=mod; } } ll get(int l, int r){ // [l, r) ll ret=hash[r]+mod-mul(hash[l], power[r-l]); if(ret>=mod) ret-=mod; return ret; } ll concat(ll h1, ll h2, int len2){ //h1+h2 ll ret=mul(h1, power[len2])+h2; if(ret>=mod) ret-=mod; return ret; } }; int main() { string s[2]; cin>>s[0]>>s[1]; unordered_map<ll, ll> mps[2]; for(int z=0; z<2; z++){ int n=s[z].size(); string s1="#"; for(int i=0; i<n; i++){ s1+=s[z][i], s1+='#'; } auto vs=manacher(s1); RollingHash rs(s[z]); vector<vector<pair<int, ll>>> ss(n+1); for(int i=0; i<n; i++){ int u=(vs[(i<<1)^1]>>1); int l=i-u+1, r=i+u; ll x=rs.get(l, r); if(mps[z].find(x)==mps[z].end()) ss[r-l].push_back({l, x}); mps[z][x]++; if(i==n-1) break; u=(vs[(i<<1)+2]>>1); if(u==0) continue; l=i-u+1, r=i+1+u; x=rs.get(l, r); if(mps[z].find(x)==mps[z].end()) ss[r-l].push_back({l, x}); mps[z][x]++; } for(int d=n; d>=3; d--){ for(auto p:ss[d]){ int l=p.first; ll x0=p.second; ll x=rs.get(l+1, l+d-1); if(mps[z].find(x)==mps[z].end()) ss[d-2].push_back({l+1, x}); mps[z][x]+=mps[z][x0]; } } } ll ans=0; for(auto p:mps[0]){ ll x=p.first; if(mps[1].find(x)!=mps[1].end()){ ans+=mps[1][x]*p.second; } } cout<<ans<<endl; return 0; }