結果

問題 No.2761 Substitute and Search
ユーザー tnakao0123tnakao0123
提出日時 2024-05-22 15:48:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,553 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 44,928 KB
実行使用メモリ 659,584 KB
最終ジャッジ日時 2024-05-22 15:49:08
合計ジャッジ時間 8,054 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,948 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 539 ms
6,944 KB
testcase_05 AC 37 ms
6,940 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 AC 71 ms
20,864 KB
testcase_09 AC 222 ms
20,992 KB
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 AC 78 ms
20,992 KB
testcase_15 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

/* constant */

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

/* typedef */

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

/* global variables */

Node *root;
char s[MAX_L + 4];
int ts[MAX_L][26];

/* subroutines */

void trie_add(int l, char s[]) {
  Node *u = root;
  for (int i = 0; i < l; i++) {
    int ci = s[i] - 'a';
    if (u->cs[ci] == nullptr) u->cs[ci] = new Node();
    u = u->cs[ci];
    u->s++;
  }
}

int trie_count(Node *u, int i, char s[]) {
  if (! s[i]) return u->s;

  int ci = s[i] - 'a';
  int sum = 0;
  for (int j = 0; j < 26; j++)
    if (ts[i][j] == ci && u->cs[j] != nullptr)
      sum += trie_count(u->cs[j], i + 1, s);
  return sum;
}

int trie_count(char s[]) { return trie_count(root, 0, s); }

/* main */

int main() {
  root = new 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