結果
問題 | No.2020 Sum of Common Prefix Length |
ユーザー | souta-1326 |
提出日時 | 2022-04-19 22:34:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,214 bytes |
コンパイル時間 | 2,190 ms |
コンパイル使用メモリ | 213,512 KB |
実行使用メモリ | 41,848 KB |
最終ジャッジ日時 | 2024-06-11 12:58:31 |
合計ジャッジ時間 | 11,746 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
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 | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | RE | - |
testcase_37 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int N;cin >> N; vector<string> S(N); for(string &s:S) cin >> s; vector<char> node({0}); vector<vector<int>> nex(1,vector<int>(26,-1)),cnt(1); for(int i=0;i<N;i++){ int now = 0;cnt[0].emplace_back(i); for(char c:S[i]){ int z = c-'a'; if(nex[now][z] == -1){ nex[now][z] = node.size(); node.emplace_back(c); nex.emplace_back(vector<int>(26,-1)); cnt.emplace_back(vector<int>()); } now = nex[now][z];cnt[now].emplace_back(i); } } vector<int> ans(N),pos(N); for(int i=0;i<N;i++){ int now = 0; for(char c:S[i]){ int z = c-'a'; now = nex[now][z]; ans[i] += cnt[now].size(); } pos[i] = now; } int Q;cin >> Q; for(int i=0;i<Q;i++){ int t,x;cin >> t >> x;x--; if(t == 1){ char c;cin >> c; int z = c-'a'; if(nex[pos[x]][z] == -1){ nex[pos[x]][z] = node.size(); node.emplace_back(c); cnt.emplace_back(vector<int>()); } pos[x] = nex[pos[x]][z]; ans[x] += cnt[pos[x]].size(); for(int itr:cnt[pos[x]]) ans[itr]++; } else{ cout << ans[x] << "\n"; } } }