結果

問題 No.2761 Substitute and Search
ユーザー tnakao0123tnakao0123
提出日時 2024-05-22 15:54:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,569 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 45,128 KB
実行使用メモリ 161,904 KB
最終ジャッジ日時 2024-05-22 15:54:56
合計ジャッジ時間 6,956 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
161,264 KB
testcase_01 AC 46 ms
161,244 KB
testcase_02 AC 47 ms
161,344 KB
testcase_03 AC 47 ms
161,352 KB
testcase_04 AC 552 ms
161,780 KB
testcase_05 AC 76 ms
161,904 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<algorithm>
 
using namespace std;

/* constant */

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

/* typedef */

struct Node {
  short cs[26], s;
  Node(): s(0) { fill(cs, cs + 26, -1); }
};

/* global variables */

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

/* subroutines */

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] = bpt++;
    u = buf[u].cs[ci];
    buf[u].s++;
  }
}

int trie_count(int u, int i, char s[]) {
  if (! s[i]) return buf[u].s;

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

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

/* main */

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