結果

問題 No.390 最長の数列
ユーザー potoooooooopotoooooooo
提出日時 2019-01-18 00:53:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 88 ms / 5,000 ms
コード長 448 bytes
コンパイル時間 1,548 ms
コンパイル使用メモリ 167,064 KB
実行使用メモリ 7,236 KB
最終ジャッジ日時 2024-07-01 10:13:06
合計ジャッジ時間 3,258 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
7,092 KB
testcase_01 AC 32 ms
7,068 KB
testcase_02 AC 32 ms
7,076 KB
testcase_03 AC 32 ms
7,152 KB
testcase_04 AC 33 ms
7,168 KB
testcase_05 AC 65 ms
7,120 KB
testcase_06 AC 83 ms
7,168 KB
testcase_07 AC 32 ms
7,164 KB
testcase_08 AC 32 ms
7,152 KB
testcase_09 AC 31 ms
7,160 KB
testcase_10 AC 86 ms
7,200 KB
testcase_11 AC 85 ms
7,084 KB
testcase_12 AC 88 ms
7,100 KB
testcase_13 AC 56 ms
7,064 KB
testcase_14 AC 60 ms
7,068 KB
testcase_15 AC 32 ms
7,204 KB
testcase_16 AC 32 ms
7,084 KB
testcase_17 AC 35 ms
7,152 KB
testcase_18 AC 36 ms
7,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int n; cin >> n;
    vector<int> v(1000010, 0);
    for (int i = 0; i < n; i++) {
        int k; cin >> k;
        v[k]++;
    }
    int ans = 1;
    for (int i = 1; i < 1000010; i++) {
        for (int j = 2; i * j < 1000010; j++) {
            if (v[i*j] > 0) v[i*j] = max(v[i*j], v[i]+1);
            ans = max(ans, v[i*j]);
        }
    }
    cout << ans << endl;
    return 0;
}
0