結果

問題 No.979 Longest Divisor Sequence
ユーザー MisterMister
提出日時 2020-01-31 22:01:58
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 382 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 837 ms
コンパイル使用メモリ 130,968 KB
実行使用メモリ 36,992 KB
最終ジャッジ日時 2024-05-07 20:19:43
合計ジャッジ時間 6,741 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 303 ms
36,992 KB
testcase_01 AC 289 ms
36,916 KB
testcase_02 AC 272 ms
36,952 KB
testcase_03 AC 282 ms
36,992 KB
testcase_04 AC 319 ms
36,992 KB
testcase_05 AC 312 ms
36,864 KB
testcase_06 AC 303 ms
36,984 KB
testcase_07 AC 317 ms
36,912 KB
testcase_08 AC 302 ms
36,864 KB
testcase_09 AC 291 ms
36,992 KB
testcase_10 AC 313 ms
36,864 KB
testcase_11 AC 306 ms
36,864 KB
testcase_12 AC 301 ms
36,972 KB
testcase_13 AC 322 ms
36,864 KB
testcase_14 AC 382 ms
36,992 KB
testcase_15 AC 333 ms
36,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>

constexpr int X = 300000;

void solve() {
    std::vector<std::vector<int>> facts(X + 1);
    for (int p = 1; p <= X; ++p) {
        for (int q = 2; p * q <= X; ++q) {
            facts[p * q].push_back(p);
        }
    }

    int n;
    std::cin >> n;

    std::vector<int> dp(X + 1, -n);
    while (n--) {
        int a;
        std::cin >> a;

        dp[a] = std::max(dp[a], 1);
        for (auto p : facts[a]) {
            dp[a] = std::max(dp[a], dp[p] + 1);
        }
    }

    std::cout << *std::max_element(dp.begin(), dp.end()) << std::endl;
}

int main() {
    std::cin.tie(nullptr);
    std::cout.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0