結果

問題 No.2020 Sum of Common Prefix Length
ユーザー kmjpkmjp
提出日時 2022-07-22 22:42:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 2,037 bytes
コンパイル時間 2,007 ms
コンパイル使用メモリ 204,328 KB
実行使用メモリ 78,544 KB
最終ジャッジ日時 2024-07-04 07:14:33
合計ジャッジ時間 11,933 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
66,652 KB
testcase_01 AC 22 ms
66,012 KB
testcase_02 AC 21 ms
66,652 KB
testcase_03 AC 23 ms
65,132 KB
testcase_04 AC 24 ms
65,520 KB
testcase_05 AC 23 ms
66,036 KB
testcase_06 AC 23 ms
66,672 KB
testcase_07 AC 236 ms
65,780 KB
testcase_08 AC 232 ms
66,940 KB
testcase_09 AC 235 ms
66,812 KB
testcase_10 AC 231 ms
65,144 KB
testcase_11 AC 232 ms
66,808 KB
testcase_12 AC 236 ms
66,168 KB
testcase_13 AC 234 ms
67,068 KB
testcase_14 AC 230 ms
66,304 KB
testcase_15 AC 248 ms
66,660 KB
testcase_16 AC 242 ms
66,528 KB
testcase_17 AC 230 ms
70,220 KB
testcase_18 AC 223 ms
69,320 KB
testcase_19 AC 225 ms
68,796 KB
testcase_20 AC 236 ms
73,752 KB
testcase_21 AC 262 ms
72,684 KB
testcase_22 AC 255 ms
72,680 KB
testcase_23 AC 257 ms
72,552 KB
testcase_24 AC 261 ms
72,940 KB
testcase_25 AC 257 ms
73,468 KB
testcase_26 AC 208 ms
75,256 KB
testcase_27 AC 22 ms
64,860 KB
testcase_28 AC 240 ms
65,764 KB
testcase_29 AC 241 ms
66,528 KB
testcase_30 AC 237 ms
66,784 KB
testcase_31 AC 238 ms
76,064 KB
testcase_32 AC 229 ms
78,544 KB
testcase_33 AC 224 ms
74,288 KB
testcase_34 AC 239 ms
68,060 KB
testcase_35 AC 231 ms
68,372 KB
testcase_36 AC 226 ms
73,084 KB
testcase_37 AC 239 ms
70,296 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 nex;
int E[454545][26];
int N;
string S[202020],T[202020];
int pos[202020];
int Q;
int A[202020],B[202020];
char C[202020];

int id;
int L[454545],R[454545];

void dfs(int cur,int pos,string& S) {
	if(pos==S.size()) return;
	int x=S[pos]-'a';
	if(E[cur][x]==-1) {
		E[cur][x]=nex++;
	}
	dfs(E[cur][x],pos+1,S);
}

void dfs2(int cur) {
	L[cur]=id++;
	int i;
	FOR(i,26) if(E[cur][i]!=-1) dfs2(E[cur][i]);
	R[cur]=id++;
}

template<class V, int ME> class BIT {
public:
	V bit[1<<ME];
	V operator()(int e) {if(e<0) return 0;V s=0;e++;while(e) s+=bit[e-1],e-=e&-e; return s;}
	void add(int e,V v) { e++; while(e<=1<<ME) bit[e-1]+=v,e+=e&-e;}
};
BIT<ll,20> bt;

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	FOR(i,N) {
		cin>>S[i];
		T[i]=S[i];
	}
	cin>>Q;
	FOR(i,Q) {
		cin>>A[i]>>B[i];
		B[i]--;
		if(A[i]==1) {
			cin>>C[i];
			T[B[i]]+=C[i];
		}
	}
	MINUS(E);
	nex=1;
	FOR(i,N) dfs(0,0,T[i]);
	dfs2(0);
	FOR(i,N) {
		FORR(c,S[i]) {
			x=c-'a';
			pos[i]=E[pos[i]][x];
			bt.add(L[pos[i]],1);
			bt.add(R[pos[i]],-1);
		}
	}
	FOR(i,Q) {
		y=B[i];
		if(A[i]==1) {
			x=C[i]-'a';
			S[y]+=C[y];
			pos[y]=E[pos[y]][x];
			bt.add(L[pos[y]],1);
			bt.add(R[pos[y]],-1);
		}
		else {
			cout<<bt(L[pos[y]])<<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