結果

問題 No.390 最長の数列
ユーザー MisterMister
提出日時 2020-05-29 17:29:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 774 bytes
コンパイル時間 822 ms
コンパイル使用メモリ 87,692 KB
実行使用メモリ 7,900 KB
最終ジャッジ日時 2024-10-15 15:13:29
合計ジャッジ時間 1,965 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,080 KB
testcase_01 AC 4 ms
7,040 KB
testcase_02 AC 4 ms
6,992 KB
testcase_03 AC 3 ms
7,152 KB
testcase_04 AC 4 ms
7,000 KB
testcase_05 AC 23 ms
7,900 KB
testcase_06 AC 51 ms
7,848 KB
testcase_07 AC 4 ms
7,064 KB
testcase_08 AC 4 ms
6,956 KB
testcase_09 AC 5 ms
7,168 KB
testcase_10 AC 26 ms
7,752 KB
testcase_11 AC 26 ms
7,792 KB
testcase_12 AC 26 ms
7,748 KB
testcase_13 AC 18 ms
7,736 KB
testcase_14 AC 23 ms
7,792 KB
testcase_15 AC 4 ms
6,956 KB
testcase_16 AC 4 ms
7,016 KB
testcase_17 AC 5 ms
7,024 KB
testcase_18 AC 5 ms
7,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

constexpr int X = 1000000;

void solve() {
    int n;
    std::cin >> n;

    std::vector<int> xs(n);
    for (auto& x : xs) std::cin >> x;
    std::sort(xs.rbegin(), xs.rend());

    std::vector<int> pos(X + 1, -1);
    for (int i = 0; i < n; ++i) pos[xs[i]] = i;

    std::vector<int> dp(n, 1);
    for (int i = 0; i < n; ++i) {
        auto x = xs[i];

        for (int y = x * 2; y <= xs.front(); y += x) {
            if (pos[y] == -1) continue;
            dp[i] = std::max(dp[i], dp[pos[y]] + 1);
        }
    }

    std::cout << *std::max_element(dp.begin(), dp.end()) << "\n";
}

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

    solve();

    return 0;
}
0