結果

問題 No.127 門松もどき
ユーザー beetbeet
提出日時 2019-03-30 20:46:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,838 bytes
コンパイル時間 2,519 ms
コンパイル使用メモリ 214,556 KB
実行使用メモリ 102,016 KB
最終ジャッジ日時 2024-04-28 12:21:27
合計ジャッジ時間 24,985 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,504 KB
testcase_01 AC 4 ms
5,632 KB
testcase_02 AC 4 ms
5,632 KB
testcase_03 AC 4 ms
5,504 KB
testcase_04 AC 2,174 ms
102,016 KB
testcase_05 AC 4 ms
5,504 KB
testcase_06 AC 95 ms
12,544 KB
testcase_07 AC 4 ms
5,632 KB
testcase_08 AC 4 ms
5,632 KB
testcase_09 AC 4 ms
5,632 KB
testcase_10 AC 4 ms
5,632 KB
testcase_11 AC 6 ms
5,888 KB
testcase_12 AC 1,033 ms
75,520 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1,848 ms
96,768 KB
testcase_16 AC 1,238 ms
81,664 KB
testcase_17 AC 1,315 ms
87,680 KB
testcase_18 WA -
testcase_19 AC 520 ms
34,816 KB
testcase_20 AC 495 ms
35,200 KB
testcase_21 WA -
testcase_22 AC 2,139 ms
102,016 KB
testcase_23 AC 2,016 ms
102,016 KB
testcase_24 AC 1,630 ms
89,856 KB
testcase_25 AC 1,985 ms
97,408 KB
testcase_26 AC 793 ms
38,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}


template <typename T>
struct SegmentTree{
  using F = function<T(T,T)>;
  int n;
  F f;
  T ti;
  vector<T> dat;
  SegmentTree(){};
  SegmentTree(F f,T ti):f(f),ti(ti){}
  void init(int n_){    
    n=1;
    while(n<n_) n<<=1;
    dat.assign(n<<1,ti);
  }
  void build(const vector<T> &v){
    int n_=v.size();
    init(n_);
    for(int i=0;i<n_;i++) dat[n+i]=v[i];
    for(int i=n-1;i;i--)
      dat[i]=f(dat[(i<<1)|0],dat[(i<<1)|1]);
  }
  void set_val(int k,T x){
    dat[k+=n]=x;
    while(k>>=1)
      dat[k]=f(dat[(k<<1)|0],dat[(k<<1)|1]);    
  }
  T query(int a,int b){
    T vl=ti,vr=ti;
    for(int l=a+n,r=b+n;l<r;l>>=1,r>>=1) {
      if(l&1) vl=f(vl,dat[l++]);
      if(r&1) vr=f(dat[--r],vr);
    }
    return f(vl,vr);
  }
};

//INSERT ABOVE HERE
signed main(){
  int n;
  cin>>n;
  vector<int> a(n);
  for(int i=0;i<n;i++) cin>>a[i];

  auto f=[](int a,int b){return max(a,b);};

  vector< SegmentTree<int> > vs;
  for(int i=0;i<n;i++){
    vs.emplace_back(f,0);
    vs.back().build(vector<int>(n+1,0));
  }
  
  const int MAX = 1e5+100;
  vector<vector<int> > G(MAX);
  for(int i=0;i<n;i++) G[a[i]].emplace_back(i);

  int ans=1;
  for(int t=MAX-1;t>0;t--){
    if(G[t].empty()) continue;
    vector<vector<int> > nvs;
    for(int k:G[t]){
      vector<int> nv(n+1,0);
      for(int i=0;i<k;i++)
        nv[i]=vs[i].query(i,k)+1;
      for(int i=k+1;i<n;i++)
        nv[i]=vs[i].query(k,i)+1;

      chmax(ans,*max_element(nv.begin(),nv.end()));
      nvs.emplace_back(nv);
    }
    
    for(int i=0;i<(int)G[t].size();i++)
      vs[G[t][i]].build(nvs[i]);
  }

  cout<<ans<<endl;
  return 0;
}
0