結果
問題 | No.2020 Sum of Common Prefix Length |
ユーザー | 👑 potato167 |
提出日時 | 2022-07-22 22:21:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 221 ms / 2,000 ms |
コード長 | 3,381 bytes |
コンパイル時間 | 2,795 ms |
コンパイル使用メモリ | 213,548 KB |
実行使用メモリ | 74,884 KB |
最終ジャッジ日時 | 2024-07-04 06:53:55 |
合計ジャッジ時間 | 8,751 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 66 ms
7,680 KB |
testcase_08 | AC | 67 ms
7,680 KB |
testcase_09 | AC | 67 ms
7,680 KB |
testcase_10 | AC | 67 ms
7,680 KB |
testcase_11 | AC | 71 ms
7,808 KB |
testcase_12 | AC | 71 ms
7,680 KB |
testcase_13 | AC | 66 ms
7,680 KB |
testcase_14 | AC | 65 ms
7,680 KB |
testcase_15 | AC | 102 ms
17,336 KB |
testcase_16 | AC | 104 ms
17,332 KB |
testcase_17 | AC | 185 ms
32,336 KB |
testcase_18 | AC | 161 ms
23,664 KB |
testcase_19 | AC | 164 ms
25,420 KB |
testcase_20 | AC | 217 ms
74,032 KB |
testcase_21 | AC | 205 ms
74,884 KB |
testcase_22 | AC | 202 ms
58,292 KB |
testcase_23 | AC | 185 ms
57,452 KB |
testcase_24 | AC | 208 ms
74,476 KB |
testcase_25 | AC | 221 ms
74,708 KB |
testcase_26 | AC | 156 ms
38,640 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 84 ms
10,676 KB |
testcase_29 | AC | 84 ms
11,036 KB |
testcase_30 | AC | 79 ms
10,676 KB |
testcase_31 | AC | 197 ms
73,920 KB |
testcase_32 | AC | 197 ms
73,896 KB |
testcase_33 | AC | 170 ms
38,992 KB |
testcase_34 | AC | 98 ms
20,932 KB |
testcase_35 | AC | 169 ms
20,936 KB |
testcase_36 | AC | 169 ms
45,488 KB |
testcase_37 | AC | 175 ms
29,924 KB |
ソースコード
#include <bits/stdc++.h> #pragma GCC optimize("Ofast") #define _GLIBCXX_DEBUG using namespace std; using std::cout; using std::cin; using std::endl; using ll=long long; using ld=long double; ll ILL=2167167167167167167; const int INF=2100000000; const ll mod=998244353; #define rep(i,a) for (ll i=0;i<a;i++) #define all(p) p.begin(),p.end() template<class T> using _pq = priority_queue<T, vector<T>, greater<T>>; template<class T> ll LB(vector<T> &v,T a){return lower_bound(v.begin(),v.end(),a)-v.begin();} template<class T> ll UB(vector<T> &v,T a){return upper_bound(v.begin(),v.end(),a)-v.begin();} template<class T> bool chmin(T &a,const T &b){if(a>b){a=b;return 1;}else return 0;} template<class T> bool chmax(T &a,const T &b){if(a<b){a=b;return 1;}else return 0;} template<class T> void So(vector<T> &v) {sort(v.begin(),v.end());} template<class T> void Sore(vector<T> &v) {sort(v.begin(),v.end(),[](T x,T y){return x>y;});} void yneos(bool a){if(a) cout<<"Yes\n"; else cout<<"No\n";} template<class T> void vec_out(vector<T> &p){for(int i=0;i<(int)(p.size());i++){if(i) cout<<" ";cout<<p[i];}cout<<"\n";} namespace po167{ template<int char_size,int base> struct Trie_Tree { struct Node{ std::vector<int> next_node; std::vector<int> accept_node; int parent_node; int char_number; int cou; Node(int c_):next_node(char_size),char_number(c_),parent_node(-1),cou(0){ for(int i=0;i<char_size;i++) next_node[i]=-1; } }; std::vector<Node> nodes; Trie_Tree(){ nodes.push_back(Node(-1)); } vector<int> insert(std::string &word,int word_id){ int node_id=0; vector<int> ids; for(int i=0;i<(int)word.size();i++){ int c=(int)(word[i]-base); int next_id=nodes[node_id].next_node[c]; if(next_id==-1){ next_id=(int)nodes.size(); nodes.push_back(Node(c)); } nodes[next_id].cou++; nodes[next_id].parent_node=node_id; nodes[node_id].next_node[c]=next_id; nodes[next_id].accept_node.push_back(word_id); node_id=next_id; ids.push_back(node_id); } return ids; } int min_insert(char ch,int node_id,int word_id){ int c=(int)(ch-base); int next_id=nodes[node_id].next_node[c]; if(next_id==-1){ next_id=(int)nodes.size(); nodes.push_back(Node(c)); } nodes[next_id].cou++; nodes[next_id].parent_node=node_id; nodes[node_id].next_node[c]=next_id; nodes[next_id].accept_node.push_back(word_id); node_id=next_id; return node_id; } }; } using po167::Trie_Tree; void solve(); // oddloop int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int t=1; //cin>>t; rep(i,t) solve(); } void solve(){ int N; cin>>N; string S; vector<vector<int>> ids(N); po167::Trie_Tree<26,(int)('a')> T; rep(i,N){ string S; cin>>S; ids[i]=T.insert(S,i); //vec_out(ids[i]); } //cout<<endl; int Q; cin>>Q; vector<ll> base(N); int B=600; rep(i,N){ for(int j=B;j<(int)(ids[i].size());j++){ base[i]+=(int)(T.nodes[ids[i][j]].accept_node.size()); } } rep(i,Q){ int t,ind; cin>>t>>ind; ind--; if(t==1){ char c; cin>>c; int tmp=T.min_insert(c,(*ids[ind].rbegin()),ind); if((int)(ids[ind].size())>=B){ base[ind]--; for(auto x:T.nodes[tmp].accept_node) base[x]++,base[ind]++; } ids[ind].push_back(tmp); }else{ ll ans=base[ind]; rep(j,min((int)(ids[ind].size()),B)) ans+=(ll)(T.nodes[ids[ind][j]].accept_node.size()); cout<<ans<<"\n"; } } }