結果
問題 | No.2172 SEARCH in the Text Editor |
ユーザー | Kude |
提出日時 | 2022-12-24 01:18:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,336 bytes |
コンパイル時間 | 2,114 ms |
コンパイル使用メモリ | 229,552 KB |
実行使用メモリ | 13,972 KB |
最終ジャッジ日時 | 2024-11-18 07:14:01 |
合計ジャッジ時間 | 5,057 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 39 ms
13,908 KB |
testcase_04 | AC | 33 ms
13,968 KB |
testcase_05 | AC | 34 ms
13,972 KB |
testcase_06 | AC | 12 ms
9,092 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 14 ms
7,140 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 12 ms
9,832 KB |
testcase_17 | WA | - |
testcase_18 | AC | 18 ms
12,016 KB |
testcase_19 | WA | - |
testcase_20 | AC | 9 ms
7,788 KB |
testcase_21 | AC | 26 ms
11,560 KB |
testcase_22 | AC | 24 ms
13,836 KB |
testcase_23 | AC | 25 ms
13,648 KB |
testcase_24 | AC | 25 ms
13,724 KB |
testcase_25 | AC | 25 ms
13,868 KB |
testcase_26 | AC | 32 ms
13,748 KB |
testcase_27 | AC | 33 ms
13,696 KB |
testcase_28 | AC | 19 ms
13,624 KB |
testcase_29 | AC | 20 ms
13,664 KB |
testcase_30 | AC | 20 ms
13,772 KB |
testcase_31 | AC | 22 ms
13,596 KB |
testcase_32 | AC | 38 ms
13,604 KB |
testcase_33 | AC | 39 ms
13,708 KB |
testcase_34 | AC | 25 ms
13,840 KB |
testcase_35 | AC | 25 ms
13,880 KB |
testcase_36 | AC | 25 ms
13,664 KB |
testcase_37 | AC | 25 ms
13,820 KB |
testcase_38 | AC | 32 ms
13,688 KB |
testcase_39 | AC | 33 ms
13,764 KB |
testcase_40 | AC | 21 ms
13,764 KB |
testcase_41 | AC | 21 ms
13,756 KB |
testcase_42 | AC | 21 ms
13,644 KB |
testcase_43 | AC | 21 ms
13,864 KB |
testcase_44 | AC | 33 ms
13,832 KB |
testcase_45 | AC | 33 ms
13,796 KB |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
ソースコード
#include<bits/stdc++.h> namespace { #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-function" #include<atcoder/all> #pragma GCC diagnostic pop using namespace std; using namespace atcoder; #define rep(i,n) for(int i = 0; i < (int)(n); i++) #define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--) #define all(x) begin(x), end(x) #define rall(x) rbegin(x), rend(x) template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; } template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; } using ll = long long; using P = pair<int,int>; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; using mint = modint998244353; int m; struct S { bool first_ok[50]{}, second_ok[50]{}; mint cnt; int len = 0; friend S operator*(S x, S y) { S z; z.cnt = x.cnt + y.cnt; z.len = x.len + y.len; chmin(z.len, 1000); for(int i = 1; i < m; i++) if (x.first_ok[i] && y.second_ok[i]) { if (i <= x.len) { if (i + y.len >= m) { z.cnt++; } else { z.first_ok[i + y.len] = true; } } else { z.second_ok[i - x.len] = true; if (i + y.len < m) z.first_ok[i + y.len] = true; } } for(int i = 1; i < m; i++) if (m - i < x.len) z.second_ok[i] = x.second_ok[i]; for(int i = 1; i < m; i++) if (i < y.len) z.first_ok[i] = y.first_ok[i]; return z; } }; } int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; string t; cin >> t; m = t.size(); vector<S> d(n); rep(z, n) { string s; cin >> s; if (s[0] == '~') { int j, k; cin >> j >> k; j--, k--; d[z] = d[j] * d[k]; } else { S A; int sz = s.size(); A.len = sz; auto chk = [&](int p1, int p2) { while(p1 < m && p2 < sz) if (t[p1++] != s[p2++]) return false; return true; }; for(int i = 1; i < m; i++) if (chk(i, 0)) { A.second_ok[i] = true; if (i + sz < m) A.first_ok[i + sz] = true; } for(int p = 0; p < sz; p++) if (chk(0, p)) { if (sz - p >= m) A.cnt++; else A.first_ok[sz - p] = true; } d[z] = A; } } mint ans = d[n - 1].cnt; cout << ans.val() << '\n'; }