結果

問題 No.390 最長の数列
ユーザー alpha_virginisalpha_virginis
提出日時 2016-12-15 23:27:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 948 bytes
コンパイル時間 1,815 ms
コンパイル使用メモリ 167,284 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-07 15:16:30
合計ジャッジ時間 4,476 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 2 ms
6,940 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 WA -
testcase_15 AC 2 ms
6,944 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#ifndef LOCAL_
#define fprintf if( false ) fprintf
#endif // LOCAL_
#define dumpi(x1) fprintf(stderr, "#%s.%d (%s) = (%d)\n", __func__, __LINE__, #x1, x1);
#define dumpii(x1, x2) fprintf(stderr, "#%s.%d (%s, %s) = (%d, %d)\n", __func__, __LINE__, #x1, #x2, x1, x2);
#define dumpl(x1) fprintf(stderr, "#%s.%d (%s) = (%ld)\n", __func__, __LINE__, #x1, x1);
#define dumpd(x1) fprintf(stderr, "#%s.%d (%s) = (%lf)\n", __func__, __LINE__, #x1, x1);

int n;
int xs[112345];

int main() {
  scanf("%d", &n);
  for(int i = 0; i < n; ++i) {
    int a;
    scanf("%d", &a);
    xs[a] = 1;
  }

  for(int i = 1; i < 1100; ++i) {
    if( xs[i] == 0 ) continue;
    for(int j = i + i; j < 100100; j+=i) {
      if( xs[j] != 0 ) xs[j] = std::max(xs[j], xs[i] + 1);
    }
  }
  int res = -1;
  for(int i = 0; i < 112345; ++i) {
    // if( i < 100 ) dumpi(xs[i]);
    res = std::max(res, xs[i]);
  }
  printf("%d\n", res);

  return 0;
}
0