結果

問題 No.390 最長の数列
ユーザー ttakanottakano
提出日時 2017-12-02 01:52:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 397 ms / 5,000 ms
コード長 921 bytes
コンパイル時間 1,436 ms
コンパイル使用メモリ 166,136 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-05-06 00:38:49
合計ジャッジ時間 4,122 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
11,136 KB
testcase_01 AC 10 ms
11,264 KB
testcase_02 AC 9 ms
11,136 KB
testcase_03 AC 9 ms
11,136 KB
testcase_04 AC 9 ms
11,264 KB
testcase_05 AC 397 ms
11,264 KB
testcase_06 AC 317 ms
11,136 KB
testcase_07 AC 9 ms
11,264 KB
testcase_08 AC 9 ms
11,264 KB
testcase_09 AC 9 ms
11,136 KB
testcase_10 AC 298 ms
11,264 KB
testcase_11 AC 303 ms
11,136 KB
testcase_12 AC 304 ms
11,264 KB
testcase_13 AC 208 ms
11,264 KB
testcase_14 AC 141 ms
11,136 KB
testcase_15 AC 10 ms
11,136 KB
testcase_16 AC 10 ms
11,136 KB
testcase_17 AC 23 ms
11,264 KB
testcase_18 AC 31 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define print(x) cout<<x<<endl;
#define rep(i,a,b) for(int i=a;i<b;i++)
#define REP(i,a) for(int i=0;i<a;i++)
#define printall(n,array) for(int i=0;i<n;i++){cout<<array[i]<<" ";}cout<<endl;
typedef long long ll;
typedef pair<int, int> PI;
typedef pair<int, PI> V;
typedef vector<int> VE;
const ll mod = 1000000007; //10^9+7

vector<int> enumdiv(int n){
  vector<int> s;
  for(int i=1;i*i<=n;i++){
    if(n%i==0){
      s.push_back(i);
      if(i*i!=n)s.push_back(n/i);
    }
  }
  sort(s.begin(),s.end());
  return s;
}


int main(){
  int n; cin>>n;
  int x[1000005];
  REP(i,n)cin>>x[i];
  int dp[1000005];
  REP(i,n)dp[x[i]]=1;
  sort(x,x+n);

  REP(i,1000002){
    if(dp[i]){
      auto v=enumdiv(i);
      for(int j:v){
        if(j!=i)dp[i]=max(dp[i],dp[j]+1);
      }
    }
  }
  
  int max_=0;
  //printall(440,dp);
  REP(i,n)max_=max(max_,dp[x[i]]);
  print(max_);
}
0