結果

問題 No.2218 Multiple LIS
ユーザー kcvlexkcvlex
提出日時 2023-02-17 22:11:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 98 ms / 3,000 ms
コード長 749 bytes
コンパイル時間 2,864 ms
コンパイル使用メモリ 140,944 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-07-19 13:21:28
合計ジャッジ時間 6,841 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
13,936 KB
testcase_01 AC 51 ms
14,080 KB
testcase_02 AC 50 ms
13,928 KB
testcase_03 AC 50 ms
14,080 KB
testcase_04 AC 49 ms
13,952 KB
testcase_05 AC 56 ms
13,952 KB
testcase_06 AC 50 ms
13,984 KB
testcase_07 AC 54 ms
13,952 KB
testcase_08 AC 52 ms
14,080 KB
testcase_09 AC 52 ms
13,952 KB
testcase_10 AC 52 ms
13,952 KB
testcase_11 AC 51 ms
14,080 KB
testcase_12 AC 52 ms
13,952 KB
testcase_13 AC 51 ms
14,012 KB
testcase_14 AC 52 ms
14,080 KB
testcase_15 AC 54 ms
13,952 KB
testcase_16 AC 50 ms
14,080 KB
testcase_17 AC 52 ms
13,952 KB
testcase_18 AC 51 ms
13,952 KB
testcase_19 AC 49 ms
13,952 KB
testcase_20 AC 52 ms
13,952 KB
testcase_21 AC 53 ms
13,952 KB
testcase_22 AC 64 ms
14,208 KB
testcase_23 AC 78 ms
14,208 KB
testcase_24 AC 60 ms
14,080 KB
testcase_25 AC 81 ms
14,208 KB
testcase_26 AC 90 ms
14,336 KB
testcase_27 AC 98 ms
14,336 KB
testcase_28 AC 92 ms
14,464 KB
testcase_29 AC 91 ms
14,392 KB
testcase_30 AC 90 ms
14,336 KB
testcase_31 AC 80 ms
14,464 KB
testcase_32 AC 81 ms
14,336 KB
testcase_33 AC 83 ms
14,432 KB
testcase_34 AC 78 ms
14,464 KB
testcase_35 AC 82 ms
14,336 KB
testcase_36 AC 70 ms
14,336 KB
testcase_37 AC 90 ms
14,336 KB
testcase_38 AC 54 ms
14,080 KB
testcase_39 AC 54 ms
13,952 KB
testcase_40 AC 87 ms
14,592 KB
testcase_41 AC 86 ms
14,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <atcoder/all>

#define ALL(V) std::begin(V), std::end(V)

const int SIZE = 1e5 + 10;

template <typename T>
void chmax(T &a, const T &b) { a = std::max(a, b); }

int main() {
    std::vector<std::vector<int>> divs(SIZE);
    for (int i = 1; i < SIZE; i++) {
        for (int j = 1; i * j < SIZE; j++) {
            divs[i * j].push_back(i);
        }
    }
    int N;
    std::cin >> N;
    std::vector<int> A(N);
    for (auto &e : A) std::cin >> e;
    std::vector<int> dp(SIZE);
    for (auto e : A) {
        int v = 0;
        for (auto d : divs[e]) chmax(v, dp[d] + 1);
        chmax(dp[e], v);
    }
    std::cout << *std::max_element(ALL(dp)) << std::endl;
    return 0;
}
0