結果

問題 No.2172 SEARCH in the Text Editor
ユーザー daiotadaiota
提出日時 2022-12-24 13:51:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 1,595 bytes
コンパイル時間 1,796 ms
コンパイル使用メモリ 173,712 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2024-04-29 06:11:20
合計ジャッジ時間 6,444 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
9,600 KB
testcase_01 AC 7 ms
9,600 KB
testcase_02 AC 7 ms
9,600 KB
testcase_03 AC 227 ms
22,912 KB
testcase_04 AC 236 ms
22,912 KB
testcase_05 AC 242 ms
22,912 KB
testcase_06 AC 20 ms
9,984 KB
testcase_07 AC 16 ms
9,984 KB
testcase_08 AC 17 ms
9,984 KB
testcase_09 AC 25 ms
9,856 KB
testcase_10 AC 24 ms
9,856 KB
testcase_11 AC 18 ms
10,240 KB
testcase_12 AC 22 ms
9,984 KB
testcase_13 AC 25 ms
10,112 KB
testcase_14 AC 31 ms
10,112 KB
testcase_15 AC 19 ms
9,856 KB
testcase_16 AC 21 ms
10,112 KB
testcase_17 AC 20 ms
9,984 KB
testcase_18 AC 28 ms
9,984 KB
testcase_19 AC 25 ms
9,856 KB
testcase_20 AC 18 ms
9,728 KB
testcase_21 AC 31 ms
11,008 KB
testcase_22 AC 37 ms
10,496 KB
testcase_23 AC 40 ms
10,496 KB
testcase_24 AC 43 ms
10,496 KB
testcase_25 AC 43 ms
10,496 KB
testcase_26 AC 242 ms
22,912 KB
testcase_27 AC 240 ms
22,912 KB
testcase_28 AC 34 ms
10,368 KB
testcase_29 AC 37 ms
10,368 KB
testcase_30 AC 34 ms
10,240 KB
testcase_31 AC 33 ms
10,368 KB
testcase_32 AC 29 ms
9,984 KB
testcase_33 AC 30 ms
9,984 KB
testcase_34 AC 38 ms
10,496 KB
testcase_35 AC 41 ms
10,496 KB
testcase_36 AC 43 ms
10,496 KB
testcase_37 AC 44 ms
10,496 KB
testcase_38 AC 240 ms
22,784 KB
testcase_39 AC 241 ms
22,912 KB
testcase_40 AC 31 ms
10,496 KB
testcase_41 AC 34 ms
10,368 KB
testcase_42 AC 34 ms
10,368 KB
testcase_43 AC 34 ms
10,368 KB
testcase_44 AC 29 ms
9,856 KB
testcase_45 AC 30 ms
9,984 KB
testcase_46 AC 24 ms
10,752 KB
testcase_47 AC 19 ms
10,368 KB
testcase_48 AC 19 ms
10,368 KB
testcase_49 AC 28 ms
10,880 KB
testcase_50 AC 27 ms
10,624 KB
testcase_51 AC 18 ms
10,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0;i<int(n);i++)
typedef long long ll;
typedef pair<int,int> P;

const ll MOD=998244353;
ll c[100010];
string b[100010],a[100010];

int main(void){
	ll i,j;

	cin.tie(0);  ios_base::sync_with_stdio(false);

	ll N;
	string T;
	cin >> N >> T;

	ll n=T.size();

	for(i=1;i<=N;i++){
		string s;
		cin >> s;

		ll m=s.size();
		if(s!="~"){

			for(j=0;j<=m-n;j++) if(T==s.substr(j,n)){
				c[i]++;
				c[i]%=MOD;
			}

			if(m>=n-1){
				b[i]=s.substr(0,n-1);
				a[i]=s.substr(m-n+1,n-1);

			}else{
				b[i]=s;
				a[i]=s;
			}


		}else{

			ll J,K;
			cin >> J >> K;

			ll p=b[J].size(),q=a[K].size(),d=0;
			if(p==n-1 && q==n-1){
				b[i]=b[J];
				a[i]=a[K];

				string x=a[J];
				x+=b[K];

				for(j=0;j<p;j++) if(T==x.substr(j,n)) d++;
				c[i]=c[J]+c[K]+d;
				c[i]%=MOD;

			}

			else if(p<n-1 && q==n-1){
				string x=a[J];
				x+=b[K];

				b[i]=x.substr(0,n-1);
				a[i]=a[K];

				for(j=0;j<p;j++) if(T==x.substr(j,n)) d++;
				c[i]=c[J]+c[K]+d;
				c[i]%=MOD;

			}

			else if(p==n-1 && q<n-1){
				string x=a[J];
				x+=b[K];

				b[i]=b[J];
				a[i]=x.substr(p+q-n+1,n-1);

				for(j=0;j<n-1;j++) if(j<=q+1 && T==x.substr(j,n)) d++;
				c[i]=c[J]+c[K]+d;
				c[i]%=MOD;

			}

			else{
				string x=a[J];
				x+=b[K];

				if(p+q>=n-1){
					b[i]=x.substr(0,n-1);
					a[i]=x.substr(p+q-n+1,n-1);
				}else{
					b[i]=x;
					a[i]=x;
				}

				for(j=0;j<p+q;j++) if(j<=p+q-n && T==x.substr(j,n)) d++;
				c[i]=c[J]+c[K]+d;
				c[i]%=MOD;

			}


		}

		if(i==N) cout << c[N] << endl;


	}

	return 0;
}
0