結果

問題 No.2761 Substitute and Search
ユーザー tnakao0123tnakao0123
提出日時 2024-05-22 16:04:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,743 bytes
コンパイル時間 592 ms
コンパイル使用メモリ 55,660 KB
実行使用メモリ 167,536 KB
最終ジャッジ日時 2024-05-22 16:04:49
合計ジャッジ時間 7,553 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
167,288 KB
testcase_01 AC 46 ms
167,100 KB
testcase_02 AC 46 ms
167,136 KB
testcase_03 AC 44 ms
167,280 KB
testcase_04 AC 853 ms
167,480 KB
testcase_05 AC 77 ms
167,536 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2761.cc:  No.2761 Substitute and Search - yukicoder
 */

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

/* constant */

const int MAX_N = 1000;
const int MAX_L = 3000;

/* typedef */

using vi = vector<int>;

struct Node {
  short cs[26];
  int s;
  Node(): s(0) {}
};

/* global variables */

Node buf[MAX_N * MAX_L];
int bpt = 0;
char s[MAX_L + 4];
int ts[MAX_L][26];

/* subroutines */

int alloc_node() {
  int u = bpt++;
  fill(buf[u].cs, buf[u].cs + 26, -1);
  buf[u].s = 0;
  return u;
}

void trie_add(int l, char s[]) {
  int u = 0;
  for (int i = 0; i < l; i++) {
    int ci = s[i] - 'a';
    if (buf[u].cs[ci] < 0) buf[u].cs[ci] = alloc_node();
    u = buf[u].cs[ci];
    buf[u].s++;
  }
}

int trie_count(char s[]) {
  vi us(1, 0);
  for (int i = 0; s[i]; i++) {
    int ci = s[i] - 'a';
    vi vs;
    for (auto u: us)
      for (int j = 0; j < 26; j++)
	if (ts[i][j] == ci && buf[u].cs[j] >= 0)
	  vs.push_back(buf[u].cs[j]);
    swap(us, vs);
  }

  int sum = 0;
  for (auto u: us) sum += buf[u].s;
  return sum;
}

/* main */

int main() {
  alloc_node();
  
  int n, l, qn;
  scanf("%d%d%d", &n, &l, &qn);

  for (int i = 0; i < n; i++) {
    scanf("%s", s);
    trie_add(l, s);
  }
  
  for (int i = 0; i < l; i++)
    for (int j = 0; j < 26; j++) ts[i][j] = j;

  while (qn--) {
    int op;
    scanf("%d", &op);

    if (op == 1) {
      int k;
      char sc[4], sd[4];
      scanf("%d%s%s", &k, sc, sd);
      k--;
      int c = sc[0] - 'a', d = sd[0] - 'a';

      for (int j = 0; j < 26; j++)
	if (ts[k][j] == c) ts[k][j] = d;
    }
    else {
      scanf("%s", s);
      
      int cnt = trie_count(s);
      printf("%d\n", cnt);
    }
  }
  
  return 0;
}
0