結果

問題 No.390 最長の数列
ユーザー oxyshoweroxyshower
提出日時 2019-03-03 00:37:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 512 bytes
コンパイル時間 1,869 ms
コンパイル使用メモリ 172,468 KB
実行使用メモリ 11,848 KB
最終ジャッジ日時 2024-06-23 13:05:35
合計ジャッジ時間 2,709 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
11,052 KB
testcase_01 AC 7 ms
11,028 KB
testcase_02 AC 7 ms
11,032 KB
testcase_03 AC 7 ms
10,860 KB
testcase_04 AC 7 ms
10,892 KB
testcase_05 AC 21 ms
11,844 KB
testcase_06 AC 37 ms
11,800 KB
testcase_07 AC 6 ms
11,044 KB
testcase_08 AC 5 ms
10,920 KB
testcase_09 AC 7 ms
11,096 KB
testcase_10 AC 26 ms
11,824 KB
testcase_11 AC 25 ms
11,848 KB
testcase_12 AC 25 ms
11,688 KB
testcase_13 AC 20 ms
11,604 KB
testcase_14 AC 50 ms
11,784 KB
testcase_15 AC 4 ms
11,100 KB
testcase_16 AC 5 ms
11,096 KB
testcase_17 AC 6 ms
11,072 KB
testcase_18 AC 7 ms
11,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long

signed main(){
  cin.tie(0);
  ios::sync_with_stdio(false);

  int n; cin >> n;
  vector<int> x(n);
  for(int i = 0; i < n; i++){
    cin >> x[i];
  }
  sort(x.begin(),x.end());

  vector<int> dp(1000000+1,0);
  for(int i : x){
    dp[i] = max(dp[i],1LL);
    for(int j = i*2; j <= 1000000; j+=i){
      dp[j] = max(dp[j],dp[i]+1);
    }
  }

  int ans = 0;
  for(int i : x){
    ans = max(ans,dp[i]);
  }
  cout << ans << endl;

  return 0;
}
0