結果

問題 No.2020 Sum of Common Prefix Length
ユーザー 👑 kmjpkmjp
提出日時 2022-07-22 22:42:07
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 2,037 bytes
コンパイル時間 2,780 ms
コンパイル使用メモリ 200,512 KB
実行使用メモリ 82,748 KB
最終ジャッジ日時 2023-09-17 11:14:10
合計ジャッジ時間 12,259 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
68,288 KB
testcase_01 AC 20 ms
68,484 KB
testcase_02 AC 21 ms
68,400 KB
testcase_03 AC 22 ms
68,332 KB
testcase_04 AC 22 ms
68,392 KB
testcase_05 AC 22 ms
68,444 KB
testcase_06 AC 23 ms
68,436 KB
testcase_07 AC 236 ms
68,604 KB
testcase_08 AC 236 ms
72,704 KB
testcase_09 AC 234 ms
72,720 KB
testcase_10 AC 233 ms
72,688 KB
testcase_11 AC 236 ms
72,712 KB
testcase_12 AC 236 ms
72,712 KB
testcase_13 AC 235 ms
72,692 KB
testcase_14 AC 235 ms
72,708 KB
testcase_15 AC 259 ms
72,456 KB
testcase_16 AC 265 ms
72,404 KB
testcase_17 AC 231 ms
75,524 KB
testcase_18 AC 227 ms
74,812 KB
testcase_19 AC 228 ms
74,992 KB
testcase_20 AC 239 ms
77,856 KB
testcase_21 AC 265 ms
77,564 KB
testcase_22 AC 263 ms
75,356 KB
testcase_23 AC 264 ms
75,400 KB
testcase_24 AC 261 ms
77,356 KB
testcase_25 AC 261 ms
77,376 KB
testcase_26 AC 206 ms
79,576 KB
testcase_27 AC 21 ms
72,424 KB
testcase_28 AC 242 ms
72,388 KB
testcase_29 AC 243 ms
72,412 KB
testcase_30 AC 243 ms
72,532 KB
testcase_31 AC 229 ms
80,552 KB
testcase_32 AC 226 ms
82,748 KB
testcase_33 AC 222 ms
80,032 KB
testcase_34 AC 238 ms
74,828 KB
testcase_35 AC 234 ms
74,856 KB
testcase_36 AC 226 ms
77,888 KB
testcase_37 AC 239 ms
75,564 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