結果
問題 | No.2020 Sum of Common Prefix Length |
ユーザー | souta-1326 |
提出日時 | 2022-07-10 21:58:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,334 bytes |
コンパイル時間 | 4,827 ms |
コンパイル使用メモリ | 266,072 KB |
実行使用メモリ | 37,024 KB |
最終ジャッジ日時 | 2024-06-11 12:45:26 |
合計ジャッジ時間 | 12,005 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 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 | 43 ms
5,376 KB |
testcase_08 | AC | 44 ms
5,376 KB |
testcase_09 | AC | 43 ms
5,376 KB |
testcase_10 | AC | 43 ms
5,376 KB |
testcase_11 | AC | 43 ms
5,376 KB |
testcase_12 | AC | 43 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 | 50 ms
10,236 KB |
testcase_17 | AC | 1,077 ms
21,580 KB |
testcase_18 | AC | 848 ms
15,872 KB |
testcase_19 | AC | 896 ms
17,524 KB |
testcase_20 | TLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
ソースコード
#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(char c:S[x]){ now_node = nex[now_node][c-'a']; ans += cnt[now_node]; } cout << ans << "\n"; } } }