結果

問題 No.390 最長の数列
ユーザー Manuel1024Manuel1024
提出日時 2022-04-06 03:45:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 511 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 72,584 KB
実行使用メモリ 7,576 KB
最終ジャッジ日時 2024-11-27 14:01:03
合計ジャッジ時間 2,476 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
7,296 KB
testcase_01 AC 30 ms
7,032 KB
testcase_02 AC 30 ms
6,972 KB
testcase_03 AC 30 ms
7,040 KB
testcase_04 AC 29 ms
7,092 KB
testcase_05 AC 63 ms
7,556 KB
testcase_06 AC 56 ms
7,576 KB
testcase_07 AC 30 ms
7,112 KB
testcase_08 AC 29 ms
6,996 KB
testcase_09 AC 31 ms
7,092 KB
testcase_10 AC 59 ms
7,468 KB
testcase_11 AC 57 ms
7,328 KB
testcase_12 AC 57 ms
7,368 KB
testcase_13 AC 51 ms
7,272 KB
testcase_14 AC 54 ms
7,388 KB
testcase_15 AC 29 ms
6,932 KB
testcase_16 AC 29 ms
7,068 KB
testcase_17 AC 31 ms
7,164 KB
testcase_18 AC 33 ms
7,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

int main(){
    int n; cin >> n;
    vector<int> a(n);
    for(auto &it: a) cin >> it;

    vector<int> dp(1000010, 0);
    for(auto &it: a) dp[it] = 1;
    for(int i = 1000000; i > 0; i--){
        int mx = 0;
        for(int j = i*2; j < dp.size(); j += i){
            mx = max(mx, dp[j]);
        }
        dp[i] += mx;
    }

    int ans = 0;
    for(auto &it: dp) ans = max(ans, it);
    cout << ans << endl;
    return 0;
}
0