結果

問題 No.390 最長の数列
ユーザー kk
提出日時 2020-09-05 09:28:22
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 470 bytes
コンパイル時間 1,996 ms
コンパイル使用メモリ 205,792 KB
実行使用メモリ 7,560 KB
最終ジャッジ日時 2024-11-27 19:04:30
合計ジャッジ時間 3,174 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,016 KB
testcase_01 AC 4 ms
7,136 KB
testcase_02 AC 5 ms
7,076 KB
testcase_03 AC 4 ms
7,136 KB
testcase_04 AC 5 ms
7,180 KB
testcase_05 AC 18 ms
7,508 KB
testcase_06 AC 30 ms
7,528 KB
testcase_07 AC 4 ms
7,168 KB
testcase_08 AC 3 ms
7,140 KB
testcase_09 AC 3 ms
7,092 KB
testcase_10 AC 21 ms
7,536 KB
testcase_11 AC 22 ms
7,380 KB
testcase_12 AC 21 ms
7,492 KB
testcase_13 AC 16 ms
7,312 KB
testcase_14 AC 41 ms
7,560 KB
testcase_15 AC 3 ms
7,108 KB
testcase_16 AC 3 ms
6,984 KB
testcase_17 AC 5 ms
7,168 KB
testcase_18 AC 6 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  int n;
  cin >> n;
  vector<int> x(n);
  REP (i, n) cin >> x[i];
  sort(x.begin(), x.end());

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

  cout << ret << endl;
  
  return 0;
}
0