結果

問題 No.2606 Mirror Relay
ユーザー 👑 kmjpkmjp
提出日時 2024-01-12 23:33:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 3,442 bytes
コンパイル時間 2,848 ms
コンパイル使用メモリ 226,048 KB
実行使用メモリ 51,556 KB
最終ジャッジ日時 2024-01-12 23:33:55
合計ジャッジ時間 8,079 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
32,676 KB
testcase_01 AC 12 ms
25,872 KB
testcase_02 AC 13 ms
25,872 KB
testcase_03 AC 12 ms
25,872 KB
testcase_04 AC 12 ms
26,000 KB
testcase_05 AC 12 ms
26,000 KB
testcase_06 AC 12 ms
26,000 KB
testcase_07 AC 12 ms
26,000 KB
testcase_08 AC 12 ms
26,000 KB
testcase_09 AC 12 ms
26,000 KB
testcase_10 AC 12 ms
26,000 KB
testcase_11 AC 12 ms
26,000 KB
testcase_12 AC 12 ms
26,000 KB
testcase_13 AC 12 ms
26,000 KB
testcase_14 AC 11 ms
25,872 KB
testcase_15 AC 12 ms
25,872 KB
testcase_16 AC 12 ms
25,872 KB
testcase_17 AC 12 ms
25,872 KB
testcase_18 AC 12 ms
25,872 KB
testcase_19 AC 59 ms
26,256 KB
testcase_20 AC 55 ms
26,160 KB
testcase_21 AC 30 ms
26,256 KB
testcase_22 AC 26 ms
26,256 KB
testcase_23 AC 29 ms
26,256 KB
testcase_24 AC 30 ms
26,256 KB
testcase_25 AC 16 ms
26,128 KB
testcase_26 AC 12 ms
26,256 KB
testcase_27 AC 44 ms
26,384 KB
testcase_28 AC 22 ms
26,256 KB
testcase_29 AC 12 ms
26,000 KB
testcase_30 AC 12 ms
26,000 KB
testcase_31 AC 12 ms
26,000 KB
testcase_32 AC 12 ms
26,000 KB
testcase_33 AC 12 ms
26,000 KB
testcase_34 AC 12 ms
26,000 KB
testcase_35 AC 12 ms
26,000 KB
testcase_36 AC 12 ms
26,128 KB
testcase_37 AC 12 ms
26,000 KB
testcase_38 AC 12 ms
26,000 KB
testcase_39 AC 43 ms
36,048 KB
testcase_40 AC 43 ms
36,048 KB
testcase_41 AC 43 ms
36,048 KB
testcase_42 AC 44 ms
36,048 KB
testcase_43 AC 44 ms
36,688 KB
testcase_44 AC 44 ms
36,048 KB
testcase_45 AC 44 ms
36,048 KB
testcase_46 AC 42 ms
36,048 KB
testcase_47 AC 44 ms
36,688 KB
testcase_48 AC 43 ms
36,688 KB
testcase_49 TLE -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

using VT = string;

struct RollingHash {
	static const ll mo0=1000000021,mo1=1000000009;
	static ll mul0,mul1;
	static const ll add0=1000010007, add1=1003333331;
	static vector<ll> pmo[2];
	VT s; int l; vector<ll> hash_[2];
	void init(VT s) {
		this->s=s; l=s.size(); int i,j;
		hash_[0]=hash_[1]=vector<ll>(1,0);
		if(!mul0) mul0=10009+(((ll)&mul0+time(NULL))>>5)%1259,mul1=10007+(time(NULL)+((ll)&mul1)>>5)%2257;
		if(pmo[0].empty()) pmo[0].push_back(1),pmo[1].push_back(1);
		FOR(i,l) hash_[0].push_back((hash_[0].back()*mul0+add0+s[i])%mo0);
		FOR(i,l) hash_[1].push_back((hash_[1].back()*mul1+add1+s[i])%mo1);
	}
	ll hash(int l,int r) { // s[l..r]
		if(l>r) return 0;
		while(pmo[0].size()<r+2)
			pmo[0].push_back(pmo[0].back()*mul0%mo0), pmo[1].push_back(pmo[1].back()*mul1%mo1);
		return (((hash_[0][r+1]+(mo0-hash_[0][l]*pmo[0][r+1-l]%mo0))%mo0)<<32) | 
			             ((hash_[1][r+1]+(mo1-hash_[1][l]*pmo[1][r+1-l]%mo1))%mo1);
	}
	ll hash(VT s) { init(s); return hash(0,s.size()-1); }
	static ll concat(ll L ,ll R,int RL) { // hash(L+R) RL=len-of-R
		while(pmo[0].size()<RL+2) pmo[0].push_back(pmo[0].back()*mul0%mo0), pmo[1].push_back(pmo[1].back()*mul1%mo1);
		ll La=L>>32,Lb=(L<<32)>>32,Ra=R>>32,Rb=(R<<32)>>32;
		return (((Ra + La*pmo[0][RL])%mo0)<<32)|((Rb + Lb*pmo[1][RL])%mo1);
	}
};
vector<ll> RollingHash::pmo[2]; ll RollingHash::mul0,RollingHash::mul1;

pair<vector<int>,pair<int,int> > manacher(string S) {
	int L=S.size(),i,j,k;
	vector<int> rad(2*L-1,0);
	for(i=j=0;i<2*L-1;i+=k,j=max(j-k,0)) {
		while(i-j>=0 && i+j+1<=2*L-1 && S[(i-j)/2]==S[(i+j+1)/2]) j++;
		rad[i]=j;
		for(k=1;i-k>=0 && rad[i]-k>=0 && rad[i-k]!=rad[i]-k&&i+k<rad.size(); k++) rad[i+k]=min(rad[i-k],rad[i]-k);
	}
	i=max_element(rad.begin(),rad.end())-rad.begin();
	return make_pair(rad,make_pair((i-(rad[i]-1))/2,(i+(rad[i]-1))/2));
}

int N;
string S;
unordered_map<ll,pair<int,int>> R[202020];
unordered_map<ll,ll> num[202020];
RollingHash rh;

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>S;
	N=S.size();
	rh.init(S);
	vector<int> V=manacher(S).first;
	FOR(i,V.size()) if(V[i]>0) {
		int l,r;
		l=(i-(V[i]-1))/2;
		r=(i+(V[i]-1))/2;
		auto h=rh.hash(l,r);
		R[V[i]][h]={l,r};
		num[V[i]][h]++;
	}
	for(i=N;i>=3;i--) {
		FORR2(a,b,R[i]) {
			auto h=rh.hash(b.first+1,b.second-1);
			num[i-2][h]+=num[i][a];
			R[i-2][h]={b.first+1,b.second-1};
		}
	}
	ll ma=0;
	FOR(i,N+1){
		FORR2(a,b,R[i]) {
			num[i][a]*=i;
			int l=b.first;
			int r=b.second-1;
			while(r>=l) {
				auto h=rh.hash(l,r);
				if(R[r-l+1].count(h)) {
					num[i][a]+=num[r-l+1][h];
					break;
				}
				r--;
			}
			ma=max(ma,num[i][a]);
		}
	}
	cout<<ma<<endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0