結果

問題 No.2172 SEARCH in the Text Editor
ユーザー norikamenorikame
提出日時 2022-12-24 01:22:25
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,376 bytes
コンパイル時間 6,162 ms
コンパイル使用メモリ 327,132 KB
実行使用メモリ 388,028 KB
最終ジャッジ日時 2024-11-18 07:14:40
合計ジャッジ時間 32,630 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,640 KB
testcase_01 AC 2 ms
388,028 KB
testcase_02 AC 1 ms
13,636 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 34 ms
14,756 KB
testcase_07 AC 45 ms
16,036 KB
testcase_08 AC 47 ms
16,292 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 42 ms
9,984 KB
testcase_12 AC 64 ms
11,636 KB
testcase_13 AC 77 ms
13,172 KB
testcase_14 WA -
testcase_15 AC 56 ms
11,136 KB
testcase_16 AC 39 ms
8,536 KB
testcase_17 AC 57 ms
10,596 KB
testcase_18 AC 106 ms
16,768 KB
testcase_19 AC 77 ms
13,048 KB
testcase_20 AC 45 ms
9,320 KB
testcase_21 AC 94 ms
16,824 KB
testcase_22 AC 194 ms
27,796 KB
testcase_23 AC 262 ms
33,824 KB
testcase_24 AC 430 ms
52,596 KB
testcase_25 AC 364 ms
46,492 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 45 ms
7,552 KB
testcase_29 AC 44 ms
7,552 KB
testcase_30 AC 45 ms
7,608 KB
testcase_31 AC 46 ms
7,552 KB
testcase_32 AC 46 ms
7,680 KB
testcase_33 AC 46 ms
7,680 KB
testcase_34 AC 132 ms
21,584 KB
testcase_35 AC 254 ms
33,852 KB
testcase_36 AC 387 ms
46,496 KB
testcase_37 AC 407 ms
46,512 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 44 ms
7,552 KB
testcase_41 AC 42 ms
7,636 KB
testcase_42 AC 43 ms
7,652 KB
testcase_43 AC 44 ms
7,680 KB
testcase_44 AC 42 ms
7,680 KB
testcase_45 AC 43 ms
7,580 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

// 

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;

using ll = long long;

#define rep(i, n) for (int i=0; i<(int)(n); ++(i))
#define rep3(i, m, n) for (int i=(m); (i)<(int)(n); ++(i))
#define repr(i, n) for (int i=(int)(n)-1; (i)>=0; --(i))
#define rep3r(i, m, n) for (int i=(int)(n)-1; (i)>=(int)(m); --(i))
#define all(x) (x).begin(), (x).end()

const int INF = (int)(1e9);
const ll mod = 998244353LL;

int main() {
	int n;
	string t;
	cin >> n >> t;
	int tlen = t.length();
	vector<string> s(n);
	vector<int> js(n, -1), ks(n, -1), lcnt(n);
	rep(i, n) {
		cin >> s[i];
		if (s[i] != "~") {
			lcnt[i] = s[i].length();
			continue;
		}
		cin >> js[i] >> ks[i];
		js[i]--; ks[i]--;
		if (lcnt[js[i]]+lcnt[ks[i]] <= tlen*2) {
			s[i] = s[js[i]] + s[ks[i]];
			lcnt[i] = s[i].length();
			continue;
		}
		lcnt[i] = min(INF, lcnt[js[i]]+lcnt[ks[i]]);
	}
	map<pair<int, int>, bool> bmemo, fmemo;
	unordered_map<int, ll> memo;
	auto bcheck = [&](auto bcheck, int sid, int plen) -> bool {
		if (bmemo.find({ sid, plen }) != bmemo.end()) return bmemo[{sid, plen}];
		if (plen == 0) return bmemo[{sid, plen}] = true;
		if (s[sid] != "~") {
			if (lcnt[sid] < plen) return bmemo[{sid, plen}] = false;
			return bmemo[{sid, plen}] = (s[sid].substr(lcnt[sid]-plen) == t.substr(0,plen));
		}
		else return bmemo[{sid, plen}] = bcheck(bcheck, ks[sid], plen);
	};
	auto fcheck = [&](auto fcheck, int sid, int plen) -> bool {
		if (fmemo.find({ sid, plen }) != fmemo.end()) return fmemo[{sid, plen}];
		if (plen == 0) return fmemo[{sid, plen}] = true;
		if (s[sid] != "~") {
			if (lcnt[sid] < plen) return fmemo[{sid, plen}] = false;
			return fmemo[{sid, plen}] = (s[sid].substr(0,plen) == t.substr(tlen-plen));
		}
		else return fmemo[{sid, plen}] = fcheck(fcheck, js[sid], plen);
	};
	auto calc = [&](auto calc, int sid) -> ll {
		if (memo.find(sid) != memo.end()) return memo[sid];
		ll rval = 0;
		if (lcnt[sid] < tlen) return memo[sid] = rval;
		if (s[sid] != "~") {
			for (int i=0; i+tlen-1<lcnt[sid]; ++i) if (s[sid].substr(i,tlen) == t) ++rval;
			return memo[sid] = rval;
		}
		else {
			rep3(i, 1, tlen) if (bcheck(bcheck, js[sid], tlen-i) && fcheck(fcheck, ks[sid], i)) ++rval;
			return memo[sid] = (rval + calc(calc, js[sid]) + calc(calc, ks[sid])) % mod;
		}
	};
	ll res = calc(calc, n-1);
	cout << res << endl;
	return 0;
}
0