結果

問題 No.390 最長の数列
ユーザー Mr.SpockMr.Spock
提出日時 2020-11-10 23:47:59
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 691 bytes
コンパイル時間 1,756 ms
コンパイル使用メモリ 171,668 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-07-22 18:13:57
合計ジャッジ時間 3,200 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 24 ms
7,552 KB
testcase_06 AC 49 ms
7,424 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 6 ms
7,040 KB
testcase_09 AC 8 ms
7,040 KB
testcase_10 AC 28 ms
7,552 KB
testcase_11 AC 30 ms
7,424 KB
testcase_12 AC 29 ms
7,552 KB
testcase_13 AC 22 ms
7,424 KB
testcase_14 AC 21 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 6 ms
7,040 KB
testcase_17 AC 7 ms
7,168 KB
testcase_18 AC 7 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);
  int n;
  cin >> n;
  vector<int>v(n + 1);
  int nax = 0;
  for (int i = 1 ; i <= n; i++) {
    cin >> v[i];
    nax = max(nax, v[i]);
  }
  nax += 10;
  sort(v.begin(), v.end());
  vector<int>dp(nax + 1, 0);
  for (int i = 1; i <= n; i++) {
    dp[v[i]] = 1;
  }
  for (int i = 1; i < nax; i++) {
    if (dp[i] == 0)continue;
    for (int j = 2 * i; j < nax; j += i) {
      if (dp[j] >= 1) {
        dp[j] = max(dp[j], 1 + dp[i]);
      }
    }
  }
  int ans = 0;
  for (int i = 0; i <= nax; i++) {
    ans = max(ans, dp[i]);
  }
  cout << ans << endl;
}
0