結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー 👑 kmjpkmjp
提出日時 2022-10-14 23:39:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 2,839 bytes
コンパイル時間 2,660 ms
コンパイル使用メモリ 215,296 KB
実行使用メモリ 51,848 KB
最終ジャッジ日時 2023-09-09 00:08:44
合計ジャッジ時間 43,638 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
12,856 KB
testcase_01 AC 6 ms
12,816 KB
testcase_02 AC 444 ms
18,428 KB
testcase_03 AC 562 ms
20,264 KB
testcase_04 AC 483 ms
18,352 KB
testcase_05 AC 350 ms
15,740 KB
testcase_06 AC 522 ms
18,672 KB
testcase_07 AC 319 ms
16,084 KB
testcase_08 AC 189 ms
13,168 KB
testcase_09 AC 467 ms
19,312 KB
testcase_10 AC 237 ms
15,016 KB
testcase_11 AC 167 ms
15,880 KB
testcase_12 AC 363 ms
17,924 KB
testcase_13 AC 568 ms
20,884 KB
testcase_14 AC 391 ms
17,112 KB
testcase_15 AC 559 ms
19,096 KB
testcase_16 AC 761 ms
22,248 KB
testcase_17 AC 214 ms
15,480 KB
testcase_18 AC 420 ms
17,952 KB
testcase_19 AC 262 ms
16,208 KB
testcase_20 AC 650 ms
21,404 KB
testcase_21 AC 309 ms
13,584 KB
testcase_22 AC 812 ms
23,208 KB
testcase_23 AC 821 ms
23,244 KB
testcase_24 AC 890 ms
23,212 KB
testcase_25 AC 848 ms
23,188 KB
testcase_26 AC 827 ms
23,216 KB
testcase_27 AC 807 ms
23,492 KB
testcase_28 AC 820 ms
23,196 KB
testcase_29 AC 812 ms
23,196 KB
testcase_30 AC 777 ms
23,200 KB
testcase_31 AC 805 ms
23,216 KB
testcase_32 AC 780 ms
23,224 KB
testcase_33 AC 779 ms
23,212 KB
testcase_34 AC 787 ms
23,272 KB
testcase_35 AC 836 ms
23,220 KB
testcase_36 AC 839 ms
23,448 KB
testcase_37 AC 827 ms
23,200 KB
testcase_38 AC 805 ms
23,244 KB
testcase_39 AC 821 ms
23,328 KB
testcase_40 AC 798 ms
23,216 KB
testcase_41 AC 804 ms
23,272 KB
testcase_42 AC 593 ms
19,808 KB
testcase_43 AC 624 ms
19,752 KB
testcase_44 AC 631 ms
19,796 KB
testcase_45 AC 652 ms
19,840 KB
testcase_46 AC 631 ms
19,844 KB
testcase_47 AC 442 ms
16,980 KB
testcase_48 AC 448 ms
17,120 KB
testcase_49 AC 454 ms
17,020 KB
testcase_50 AC 434 ms
17,020 KB
testcase_51 AC 455 ms
17,100 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 AC 148 ms
13,004 KB
testcase_56 AC 145 ms
13,240 KB
testcase_57 AC 146 ms
12,932 KB
testcase_58 RE -
testcase_59 AC 907 ms
25,248 KB
testcase_60 AC 166 ms
12,820 KB
testcase_61 AC 145 ms
13,188 KB
testcase_62 AC 19 ms
13,152 KB
testcase_63 AC 105 ms
12,872 KB
testcase_64 AC 105 ms
12,856 KB
testcase_65 AC 113 ms
13,000 KB
testcase_66 AC 137 ms
13,112 KB
testcase_67 AC 316 ms
12,820 KB
testcase_68 AC 90 ms
12,920 KB
testcase_69 AC 321 ms
12,860 KB
権限があれば一括ダウンロードができます

ソースコード

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;}
//-------------------------------------------------------

int N;

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);
	}
	pair<ll,ll> hash(int l,int r) { // s[l..r]
		if(l>r) return make_pair(0,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 make_pair((hash_[0][r+1]+(mo0-hash_[0][l]*pmo[0][r+1-l]%mo0))%mo0,
			             (hash_[1][r+1]+(mo1-hash_[1][l]*pmo[1][r+1-l]%mo1))%mo1);
	}
	pair<ll,ll> hash(VT s) { init(s); return hash(0,s.size()-1); }
	static pair<ll,ll> concat(pair<ll,ll> L,pair<ll,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);
		return make_pair((R.first + L.first*pmo[0][RL])%mo0,(R.second + L.second*pmo[1][RL])%mo1);
	}
};
vector<ll> RollingHash::pmo[2]; ll RollingHash::mul0,RollingHash::mul1;

set<pair<ll,ll>> H[202020];
RollingHash rh;

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	FOR(x,N) {
		cin>>s;
		rh.init(s);
		auto h=rh.hash(0,s.size()-1);
		if(H[s.size()].count(h)) {
			cout<<"Yes"<<endl;
		}
		else {
			FOR(i,s.size()-1) {
				auto a=rh.hash(i+2,s.size()-1);
				a=rh.concat(rh.hash(i,i),a,s.size()-(i+2));
				a=rh.concat(rh.hash(i+1,i+1),a,s.size()-(i+1));
				a=rh.concat(rh.hash(0,i-1),a,s.size()-(i));
				if(H[s.size()].count(a)) break;
			}
			if(i==s.size()-1) {
				cout<<"No"<<endl;
			}
			else {
				cout<<"Yes"<<endl;
			}
			
		}
		
		H[s.size()].insert(rh.hash(0,s.size()-1));
	}
}


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