結果

問題 No.2761 Substitute and Search
ユーザー テナガザルテナガザル
提出日時 2024-05-17 22:05:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 603 ms / 4,000 ms
コード長 782 bytes
コンパイル時間 885 ms
コンパイル使用メモリ 84,444 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-05-17 22:05:37
合計ジャッジ時間 5,554 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 603 ms
17,152 KB
testcase_05 AC 106 ms
17,280 KB
testcase_06 AC 114 ms
17,152 KB
testcase_07 AC 418 ms
17,280 KB
testcase_08 AC 115 ms
17,152 KB
testcase_09 AC 409 ms
17,152 KB
testcase_10 AC 112 ms
17,152 KB
testcase_11 AC 403 ms
17,280 KB
testcase_12 AC 279 ms
17,152 KB
testcase_13 AC 267 ms
17,152 KB
testcase_14 AC 264 ms
17,280 KB
testcase_15 AC 258 ms
17,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <bitset>
#include <algorithm>

using namespace std;

int main()
{
  int n, l, q;
  cin >> n >> l >> q;
  vector<string> s(n);
  vector<vector<bitset<1000>>> bs(l, vector<bitset<1000>> (26));
  for (int i = 0; i < n; ++i) cin >> s[i];
  for (int i = 0; i < n; ++i) for (int j = 0; j < l; ++j) bs[j][s[i][j] - 'a'][i] = 1;
  while (q--)
  {
    int t;
    cin >> t;
    if (t == 1)
    {
      int k;
      char c, d;
      cin >> k >> c >> d;
      --k;
      bs[k][d - 'a'] |= bs[k][c - 'a'];
      bs[k][c - 'a'].reset();
    }
    else
    {
      string st;
      cin >> st;
      bitset<1000> ans;
      ans.flip();
      for (int i = 0; i < st.size(); ++i) ans &= bs[i][st[i] - 'a'];
      cout << ans.count() << endl;
    }
  }
}
0