結果

問題 No.2020 Sum of Common Prefix Length
ユーザー souta-1326souta-1326
提出日時 2022-07-10 22:00:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,434 bytes
コンパイル時間 4,081 ms
コンパイル使用メモリ 266,324 KB
実行使用メモリ 45,860 KB
最終ジャッジ日時 2024-06-11 12:56:43
合計ジャッジ時間 11,898 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 0 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 44 ms
5,376 KB
testcase_08 AC 44 ms
5,376 KB
testcase_09 AC 46 ms
5,376 KB
testcase_10 AC 44 ms
5,376 KB
testcase_11 AC 45 ms
6,940 KB
testcase_12 AC 44 ms
5,376 KB
testcase_13 AC 43 ms
5,376 KB
testcase_14 AC 44 ms
5,376 KB
testcase_15 AC 50 ms
10,368 KB
testcase_16 AC 51 ms
10,256 KB
testcase_17 AC 401 ms
21,648 KB
testcase_18 AC 449 ms
15,872 KB
testcase_19 AC 391 ms
17,020 KB
testcase_20 AC 248 ms
45,652 KB
testcase_21 AC 115 ms
45,856 KB
testcase_22 AC 112 ms
39,608 KB
testcase_23 AC 113 ms
38,952 KB
testcase_24 AC 107 ms
45,860 KB
testcase_25 AC 109 ms
45,756 KB
testcase_26 AC 59 ms
25,456 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 47 ms
6,528 KB
testcase_29 AC 47 ms
6,784 KB
testcase_30 AC 45 ms
6,400 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
#define emb emplace_back
using ll = long long;
int main(){
  cin.tie(0);ios::sync_with_stdio(false);
  //入力
  int N;cin >> N;
  vector<string> S(N);
  for(string &s:S) cin >> s;
  int node_size = 1;
  vector<vector<int>> nex(1,vector<int>(26,-1));
  vector<int> cnt({0});
  vector<int> node_itr(N);
  for(int i=0;i<N;i++){
    int now_node = 0;
    for(char c:S[i]){
      int z = c-'a';
      if(nex[now_node][z] == -1){
        nex[now_node][z] = node_size++;
        nex.emplace_back(vector<int>(26,-1));
        cnt.emplace_back(0);
      }
      now_node = nex[now_node][z];
      cnt[now_node]++;
    }
    node_itr[i] = now_node;
  }
  int Q;cin >> Q;
  for(int i=0;i<Q;i++){
    int t;cin >> t;
    if(t==1){
      int x;char c;cin >> x >> c;x--;
      int z = c-'a';
      S[x] += c;
      if(nex[node_itr[x]][z] == -1){
        nex[node_itr[x]][z] = node_size++;
        nex.emplace_back(vector<int>(26,-1));
        cnt.emplace_back(0);
      }
      node_itr[x] = nex[node_itr[x]][z];
      cnt[node_itr[x]]++;
    }
    else{
      int x;cin >> x;x--;
      int ans = 0,now_node = 0;
      for(int j=0;j<S[x].size();j++){
        now_node = nex[now_node][S[x][j]-'a'];
        if(cnt[now_node] == 1){
          ans += S[x].size()-j;break;
        }
        ans += cnt[now_node];
      }
      cout << ans << "\n";
    }
  }
}
0