結果

問題 No.390 最長の数列
ユーザー beetbeet
提出日時 2018-11-13 10:12:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 957 bytes
コンパイル時間 2,133 ms
コンパイル使用メモリ 208,032 KB
実行使用メモリ 19,676 KB
最終ジャッジ日時 2024-06-06 19:38:48
合計ジャッジ時間 3,560 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
18,688 KB
testcase_01 AC 11 ms
18,816 KB
testcase_02 AC 11 ms
18,688 KB
testcase_03 AC 13 ms
18,816 KB
testcase_04 AC 12 ms
18,688 KB
testcase_05 AC 49 ms
19,676 KB
testcase_06 AC 122 ms
19,612 KB
testcase_07 AC 10 ms
18,688 KB
testcase_08 AC 10 ms
18,816 KB
testcase_09 AC 10 ms
18,688 KB
testcase_10 AC 57 ms
19,544 KB
testcase_11 AC 59 ms
19,580 KB
testcase_12 AC 57 ms
19,672 KB
testcase_13 AC 43 ms
19,380 KB
testcase_14 AC 87 ms
19,632 KB
testcase_15 AC 9 ms
18,816 KB
testcase_16 AC 9 ms
18,688 KB
testcase_17 AC 12 ms
18,944 KB
testcase_18 AC 13 ms
18,904 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>
vector<T> compress(vector<T> v){
  sort(v.begin(),v.end());
  v.erase(unique(v.begin(),v.end()),v.end());
  return v;
}

template<typename T>
map<T, Int> dict(const vector<T> &v){
  map<T, Int> res;
  for(Int i=0;i<(Int)v.size();i++)
    res[v[i]]=i;
  return res;
}

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

  x=compress(x);
  
  const Int MAX = 1e6+100;
  const Int INF = 1e9;
  vector<Int> dp(MAX,-INF),ex(MAX,0);
  for(Int a:x) ex[a]=1;
  for(Int a:x){
    chmax(dp[a],1);
    for(Int b=a+a;b<MAX;b+=a)
      if(ex[b]) chmax(dp[b],dp[a]+1);
  }
  
  Int ans=0;
  for(Int i=0;i<MAX;i++) chmax(ans,dp[i]);
  cout<<ans<<endl;
  return 0;
}
0