結果

問題 No.2172 SEARCH in the Text Editor
ユーザー tnakao0123tnakao0123
提出日時 2022-12-27 14:23:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 409 ms / 2,000 ms
コード長 2,380 bytes
コンパイル時間 641 ms
コンパイル使用メモリ 59,904 KB
実行使用メモリ 51,328 KB
最終ジャッジ日時 2024-11-22 00:03:04
合計ジャッジ時間 6,262 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
10,496 KB
testcase_01 AC 7 ms
10,496 KB
testcase_02 AC 7 ms
10,624 KB
testcase_03 AC 409 ms
51,328 KB
testcase_04 AC 33 ms
10,724 KB
testcase_05 AC 48 ms
16,896 KB
testcase_06 AC 20 ms
10,520 KB
testcase_07 AC 21 ms
11,776 KB
testcase_08 AC 22 ms
11,904 KB
testcase_09 AC 43 ms
14,536 KB
testcase_10 AC 42 ms
14,908 KB
testcase_11 AC 41 ms
15,488 KB
testcase_12 AC 27 ms
11,776 KB
testcase_13 AC 32 ms
12,032 KB
testcase_14 AC 39 ms
13,196 KB
testcase_15 AC 27 ms
12,288 KB
testcase_16 AC 22 ms
10,496 KB
testcase_17 AC 24 ms
11,264 KB
testcase_18 AC 40 ms
13,024 KB
testcase_19 AC 26 ms
10,496 KB
testcase_20 AC 18 ms
10,604 KB
testcase_21 AC 38 ms
10,624 KB
testcase_22 AC 50 ms
16,896 KB
testcase_23 AC 49 ms
16,640 KB
testcase_24 AC 49 ms
16,896 KB
testcase_25 AC 48 ms
16,768 KB
testcase_26 AC 49 ms
16,832 KB
testcase_27 AC 50 ms
16,860 KB
testcase_28 AC 50 ms
15,724 KB
testcase_29 AC 53 ms
16,000 KB
testcase_30 AC 59 ms
16,768 KB
testcase_31 AC 58 ms
15,872 KB
testcase_32 AC 112 ms
26,296 KB
testcase_33 AC 114 ms
26,752 KB
testcase_34 AC 35 ms
10,496 KB
testcase_35 AC 49 ms
16,768 KB
testcase_36 AC 48 ms
16,896 KB
testcase_37 AC 41 ms
13,568 KB
testcase_38 AC 34 ms
10,496 KB
testcase_39 AC 48 ms
16,768 KB
testcase_40 AC 40 ms
12,416 KB
testcase_41 AC 40 ms
12,672 KB
testcase_42 AC 40 ms
12,416 KB
testcase_43 AC 40 ms
12,608 KB
testcase_44 AC 52 ms
11,964 KB
testcase_45 AC 51 ms
12,092 KB
testcase_46 AC 43 ms
13,952 KB
testcase_47 AC 33 ms
12,928 KB
testcase_48 AC 35 ms
13,312 KB
testcase_49 AC 40 ms
12,304 KB
testcase_50 AC 39 ms
12,160 KB
testcase_51 AC 24 ms
11,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2172.cc:  No.2172 SEARCH in the Text Editor - yukicoder
 */

#include<cstdio>
#include<cstring>
#include<vector>
#include<algorithm>
#include<utility>
 
using namespace std;

/* constant */

const int MAX_N = 100000;
const int MAX_M = 50;
const int MAX_L = 100000;
const int MOD = 998244353;

/* typedef */

typedef vector<int> vi;
typedef pair<int,int> pii;
typedef vector<pii> vpii;

/* typedef */

template<const int MOD>
struct MI {
  int v;
  MI(): v() {}
  MI(int _v): v(_v % MOD) {}
  MI(long long _v): v(_v % MOD) {}

  MI operator+(const MI m) const { return MI(v + m.v); }
  MI operator-(const MI m) const { return MI(v + MOD - m.v); }
  MI operator*(const MI m) const { return MI((long long)v * m.v); }

  MI &operator+=(const MI m) { return (*this = *this + m); }
  MI &operator-=(const MI m) { return (*this = *this - m); }
  MI &operator*=(const MI m) { return (*this = *this * m); }

  bool operator==(const MI m) const { return v == m.v; }
  bool operator!=(const MI m) const { return v != m.v; }
};

typedef MI<MOD> mi;

/* global variables */

char t[MAX_M + 4], s[MAX_L + 4];
mi ks[MAX_N];
vi hms[MAX_N], tms[MAX_N];
vpii mms[MAX_N];

/* subroutines */

/* main */

int main() {
  int n;
  scanf("%d%s", &n, t);
  int m = strlen(t);

  for (int i = 0; i < n; i++) {
    scanf("%s", s);

    if (s[0] == '~') {
      int i0, i1;
      scanf("%d%d", &i0, &i1);
      i0--, i1--;

      ks[i] = ks[i0] + ks[i1];
      hms[i] = hms[i1];
      tms[i] = tms[i0];

      for (auto hj: hms[i0])
	for (auto tj: tms[i1])
	  if (hj == tj) ks[i] += 1;

      for (auto hj: hms[i0])
	for (auto me: mms[i1])
	  if (hj == me.first) hms[i].push_back(me.second);
      for (auto tj: tms[i1])
	for (auto me: mms[i0])
	  if (tj == me.second) tms[i].push_back(me.first);
	for (auto me0: mms[i0])
	  for (auto me1: mms[i1])
	    if (me0.second == me1.first)
	      mms[i].push_back(pii(me0.first, me1.second));
    }
    else {
      int l = strlen(s);
      for (int j = 0; j + m <= l; j++)
	if (! strncmp(s + j, t, m)) ks[i] += 1;

      for (int j = 1; j < m; j++) {
	if (j <= l && ! strncmp(s + l - j, t, j))
	  hms[i].push_back(j);
	if (m - j <= l && ! strncmp(s, t + j, m - j))
	  tms[i].push_back(j);
	if (j + l < m && ! strncmp(t + j, s, l))
	  mms[i].push_back(pii(j, j + l));
      }
    }
  }

  printf("%d\n", ks[n - 1].v);

  return 0;
}
0