結果
問題 | No.2162 Copy and Paste 2 |
ユーザー | hotman78 |
提出日時 | 2022-12-13 14:24:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,341 ms / 7,000 ms |
コード長 | 1,686 bytes |
コンパイル時間 | 5,061 ms |
コンパイル使用メモリ | 257,596 KB |
実行使用メモリ | 26,648 KB |
最終ジャッジ日時 | 2024-11-07 09:46:00 |
合計ジャッジ時間 | 20,048 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 109 ms
16,860 KB |
testcase_07 | AC | 147 ms
18,968 KB |
testcase_08 | AC | 390 ms
21,268 KB |
testcase_09 | AC | 160 ms
16,404 KB |
testcase_10 | AC | 153 ms
16,384 KB |
testcase_11 | AC | 305 ms
19,988 KB |
testcase_12 | AC | 272 ms
18,324 KB |
testcase_13 | AC | 539 ms
21,268 KB |
testcase_14 | AC | 219 ms
16,924 KB |
testcase_15 | AC | 230 ms
16,704 KB |
testcase_16 | AC | 221 ms
17,000 KB |
testcase_17 | AC | 922 ms
22,296 KB |
testcase_18 | AC | 1,106 ms
22,424 KB |
testcase_19 | AC | 1,068 ms
22,024 KB |
testcase_20 | AC | 1,000 ms
22,160 KB |
testcase_21 | AC | 524 ms
22,160 KB |
testcase_22 | AC | 473 ms
21,368 KB |
testcase_23 | AC | 137 ms
22,296 KB |
testcase_24 | AC | 1,299 ms
26,648 KB |
testcase_25 | AC | 1,327 ms
26,644 KB |
testcase_26 | AC | 1,210 ms
23,476 KB |
testcase_27 | AC | 1,341 ms
26,552 KB |
testcase_28 | AC | 912 ms
19,092 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/string> #include<atcoder/segtree> using namespace std; using namespace atcoder; #include<ext/pb_ds/assoc_container.hpp> #include<ext/pb_ds/tree_policy.hpp> #include <ext/pb_ds/priority_queue.hpp> #include<ext/pb_ds/tag_and_trait.hpp> template<typename T>using pbds=__gnu_pbds::tree<T,__gnu_pbds::null_type,less<T>,__gnu_pbds::rb_tree_tag,__gnu_pbds::tree_order_statistics_node_update>; template<typename T>using pbds_map=__gnu_pbds::tree<T,T,less<T>,__gnu_pbds::rb_tree_tag,__gnu_pbds::tree_order_statistics_node_update>; template<typename T,typename E>using hash_map=__gnu_pbds::gp_hash_table<T,E>; template<typename T>using pqueue =__gnu_pbds::priority_queue<T, greater<T>,__gnu_pbds::rc_binomial_heap_tag>; using lint=long long; #define rep(i,n) for(int i=0;i<int(n);++i) int op(int a, int b) { return max(a, b); } int e() { return (int)(0); } int main(){ string s; cin>>s; int n=s.size(); segtree<int, op, e> seg(n+1); pbds<int> st; vector<vector<int>>v(n+1); auto z=z_algorithm(s); for(int i=0;i<n;++i){if(z[i]!=0)st.insert(i);} for(int i=0;i<n;++i){ v[z[i]].emplace_back(i); } for(int i=2;i<n+1;++i){ // cerr<<"i:"<<i<<endl; for(auto e:v[i-1]){ st.erase(e); } int now=i,cnt=0; int fst=seg.prod(0,now+1); while(1){ ++cnt; int itr=st.order_of_key(now); if(itr==st.size())break; int to=*st.find_by_order(itr)+i; assert(to<=n); seg.set(to,max(seg.get(to),fst+cnt*(i-1)-1)); now=to; } } cout<<n-seg.all_prod()<<endl; }