結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー 沙耶花沙耶花
提出日時 2022-10-14 22:00:14
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,585 ms / 3,000 ms
コード長 2,412 bytes
コンパイル時間 4,900 ms
コンパイル使用メモリ 270,364 KB
実行使用メモリ 87,832 KB
最終ジャッジ日時 2024-06-26 14:06:24
合計ジャッジ時間 72,412 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 70
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 2000000000000000001
struct rolling_hash{

	long long t_hash;
	static vector<long long> power;
	static const long long MOD = (1LL<<61)-1;
	static const long long b = 123456;
	int sz;
	
	rolling_hash(){		
		sz = 0;
		t_hash = 0;
	}
	
	rolling_hash(char c){
		sz = 1;
		t_hash = b*c;
	}

	long long mul(__int128 x,__int128 y){
		__int128 t = x*y;
		t = (t>>61) + (t&MOD);
		
		if(t>=MOD)t -= MOD;
		return t;
	}
	
	long long get_pow(int sz){
		if(power.size()>sz)return power[sz];
		
		while(power.size()<=sz){
			if(power.size()==0)power.push_back(1);
			else power.push_back(mul(power.back(),b));
		}
		return power.back();
		
	}
	
	rolling_hash &operator+=(const rolling_hash &another){
		
		(*this).t_hash = mul((*this).t_hash,get_pow(another.sz));
		(*this).t_hash += another.t_hash;
		if((*this).t_hash>=MOD)(*this).t_hash -= MOD;
			
		(*this).sz += another.sz;
		
		return (*this);
	}
	
	rolling_hash operator+(const rolling_hash &another)const{
		return (rolling_hash(*this)+=another);
	}
	
	rolling_hash &operator-=(const rolling_hash &another){

		(*this).t_hash += MOD - mul(another.t_hash,get_pow((*this).sz-another.sz));
		if((*this).t_hash>=MOD)(*this).t_hash -= MOD;
			
		(*this).sz -= another.sz;

		return (*this);
	}
	
	rolling_hash operator-(const rolling_hash &another)const{
		return (rolling_hash(*this)-=another);
	}
	
	bool operator<(const rolling_hash &another)const{
		if((*this).t_hash!=another.t_hash)return (*this).t_hash<another.t_hash;
		return (*this).sz<another.sz;
	}
	
	bool operator==(const rolling_hash &another)const{
		return ((*this).t_hash==another.t_hash && (*this).sz==another.sz);
	}

	
};

vector<long long> rolling_hash::power;



int main(){
	
	int n;
	cin>>n;
	
	set<rolling_hash> S;
	
	rep(i,n){
		string s;
		cin>>s;
		int m = s.size();
		vector<rolling_hash> r(m+1);
		rep(j,m){
			r[j+1] = r[j] + rolling_hash(s[j]);
		}
		if(S.count(r[m])){
			cout<<"Yes"<<endl;
		}
		else{
			cout<<"No"<<endl;
		}
		S.insert(r[m]);
		rep(j,m-1){
			rolling_hash t;
			t = r[j];
			t = t + rolling_hash(s[j+1]);
			t = t + rolling_hash(s[j]);
			
			t = t + (r.back() - r[j+2]);
			//cout<<t.sz<<endl;
			S.insert(t);
		}
		
	}
		
	
	return 0;
}
0