結果

問題 No.979 Longest Divisor Sequence
ユーザー beetbeet
提出日時 2020-01-31 21:55:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 374 ms / 2,000 ms
コード長 666 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 205,180 KB
実行使用メモリ 38,192 KB
最終ジャッジ日時 2024-09-17 08:03:43
合計ジャッジ時間 7,865 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 275 ms
37,120 KB
testcase_01 AC 291 ms
36,996 KB
testcase_02 AC 292 ms
36,972 KB
testcase_03 AC 284 ms
37,148 KB
testcase_04 AC 274 ms
37,024 KB
testcase_05 AC 297 ms
37,124 KB
testcase_06 AC 374 ms
37,008 KB
testcase_07 AC 342 ms
37,012 KB
testcase_08 AC 339 ms
37,100 KB
testcase_09 AC 335 ms
37,072 KB
testcase_10 AC 335 ms
37,084 KB
testcase_11 AC 327 ms
37,048 KB
testcase_12 AC 317 ms
37,060 KB
testcase_13 AC 352 ms
38,192 KB
testcase_14 AC 354 ms
38,136 KB
testcase_15 AC 262 ms
37,400 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;}

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

  const int MAX = 3e5 + 100;
  vector< vector<int> > G(MAX);
  for(int i=1;i<MAX;i++)
    for(int j=i+i;j<MAX;j+=i)
      G[j].emplace_back(i);

  vector<int> dp(MAX,-MAX);
  int ans=0;
  for(int a:as){
    chmax(dp[a],1);
    for(int d:G[a])
      chmax(dp[a],dp[d]+1);
    chmax(ans,dp[a]);
  }
  cout<<ans<<endl;
  return 0;
}
0