結果
問題 | No.1868 Teleporting Cyanmond |
ユーザー | umezo |
提出日時 | 2022-03-12 01:59:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 36 ms / 2,000 ms |
コード長 | 2,792 bytes |
コンパイル時間 | 1,893 ms |
コンパイル使用メモリ | 207,192 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-16 06:20:25 |
合計ジャッジ時間 | 3,366 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,940 KB |
testcase_02 | AC | 3 ms
6,940 KB |
testcase_03 | AC | 36 ms
6,944 KB |
testcase_04 | AC | 26 ms
6,940 KB |
testcase_05 | AC | 4 ms
6,940 KB |
testcase_06 | AC | 8 ms
6,944 KB |
testcase_07 | AC | 19 ms
6,944 KB |
testcase_08 | AC | 13 ms
6,940 KB |
testcase_09 | AC | 17 ms
6,940 KB |
testcase_10 | AC | 35 ms
6,940 KB |
testcase_11 | AC | 3 ms
6,940 KB |
testcase_12 | AC | 10 ms
6,940 KB |
testcase_13 | AC | 16 ms
6,940 KB |
testcase_14 | AC | 32 ms
6,944 KB |
testcase_15 | AC | 20 ms
6,940 KB |
testcase_16 | AC | 6 ms
6,940 KB |
testcase_17 | AC | 9 ms
6,940 KB |
testcase_18 | AC | 33 ms
6,940 KB |
testcase_19 | AC | 33 ms
6,948 KB |
testcase_20 | AC | 32 ms
6,940 KB |
testcase_21 | AC | 30 ms
6,940 KB |
testcase_22 | AC | 30 ms
6,940 KB |
testcase_23 | AC | 28 ms
6,944 KB |
testcase_24 | AC | 29 ms
6,944 KB |
testcase_25 | AC | 29 ms
6,944 KB |
testcase_26 | AC | 29 ms
6,944 KB |
testcase_27 | AC | 30 ms
6,944 KB |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include<bits/stdc++.h> using namespace std; const int INF=2147483647; template <typename X> struct SegTree{ using FX=function<X(X,X)>;// X•X -> X となる関数の型 int n; FX fx; const X ex; vector<X> dat; SegTree(int n_,FX fx_,X ex_) : n(),fx(fx_),ex(ex_),dat(n_*4,ex_){ int x=1; while (n_>x){ x *= 2; } n=x; } void set(int i,X x){ dat[i+n-1]=x;} void build(){ for (int k=n-2;k>=0;k--) dat[k]=fx(dat[2*k+1],dat[2*k+2]); } void update(int i,X x){ i += n-1; dat[i]=x; while(i>0){ i=(i-1)/2; // parent dat[i]=fx(dat[i*2+1],dat[i*2+2]); } } X get(int i){return dat[i+n-1];} X all(){return dat[0];} X query(int a,int b){ return query_sub(a,b,0,0,n);} X query_sub(int a,int b,int k,int l,int r){ if(r<=a || b<=l){ return ex; }else if(a<=l && r<=b){ return dat[k]; }else{ X vl=query_sub(a,b,k*2+1,l,(l+r)/2); X vr=query_sub(a,b,k*2+2,(l+r)/2,r); return fx(vl,vr); } } int find_rightest(int a,int b,X x){ return find_rightest_sub(a,b,x,0,0,n);} int find_leftest(int a,int b,X x){ return find_leftest_sub(a,b,x,0,0,n);} int find_rightest_sub(int a,int b,X x,int k,int l,int r){ if(dat[k]>x || r<=a || b<=l){ // 自分の値がxより大きい or [a,b)が[l,r)の範囲外ならreturn a-1 return a-1; }else if (k>=n-1){ // 自分が葉ならその位置をreturn return (k-(n-1)); }else{ int vr=find_rightest_sub(a,b,x,2*k+2,(l+r)/2,r); if(vr!=a-1){ // 右の部分木を見て a-1 以外ならreturn return vr; }else{ // 左の部分木を見て値をreturn return find_rightest_sub(a,b,x,2*k+1,l,(l+r)/2); } } } int find_leftest_sub(int a,int b,X x,int k,int l,int r){ if(dat[k]>x || r<=a || b<=l){ // 自分の値がxより大きい or [a,b)が[l,r)の範囲外ならreturn b return b; }else if (k>=n-1){ // 自分が葉ならその位置をreturn return (k-(n-1)); }else{ int vl=find_leftest_sub(a,b,x,2*k+1,l,(l+r)/2); if(vl != b){ // 左の部分木を見て b 以外ならreturn return vl; }else{ // 右の部分木を見て値をreturn return find_leftest_sub(a,b,x,2*k+2,(l+r)/2,r); } } } }; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int n; cin>>n; vector<int> A(n); rep(i,n){ cin>>A[i]; A[i]--; } using X=int; auto fx=[](X x1,X x2)->X{ return min(x1,x2);}; X ex=INF; SegTree<X> seg(100100,fx,ex); seg.update(n-1,0); for(int i=n-2;i>=0;i--){ seg.update(i,seg.query(i+1,A[i]+1)+1); } cout<<seg.get(0)<<endl; return 0; }