結果
問題 | No.390 最長の数列 |
ユーザー | alpha_virginis |
提出日時 | 2016-12-15 23:28:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 981 bytes |
コンパイル時間 | 1,541 ms |
コンパイル使用メモリ | 166,760 KB |
実行使用メモリ | 8,140 KB |
最終ジャッジ日時 | 2024-05-07 15:17:43 |
合計ジャッジ時間 | 2,755 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,944 KB |
testcase_02 | AC | 4 ms
6,940 KB |
testcase_03 | AC | 4 ms
6,940 KB |
testcase_04 | AC | 4 ms
6,940 KB |
testcase_05 | AC | 13 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | AC | 3 ms
6,948 KB |
testcase_08 | AC | 3 ms
6,944 KB |
testcase_09 | AC | 3 ms
6,944 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 16 ms
7,680 KB |
testcase_14 | WA | - |
testcase_15 | AC | 3 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#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[1123456]; int main() { scanf("%d", &n); for(int i = 0; i < n; ++i) { int a; scanf("%d", &a); xs[a] = 1; } int limit = sqrt(1123456); for(int i = 1; i < limit; ++i) { if( xs[i] == 0 ) continue; for(int j = i + i; j < 1123456; j+=i) { if( xs[j] != 0 ) xs[j] = std::max(xs[j], xs[i] + 1); } } int res = -1; for(int i = 0; i < 1123456; ++i) { // if( i < 100 ) dumpi(xs[i]); res = std::max(res, xs[i]); } printf("%d\n", res); return 0; }