結果

問題 No.2218 Multiple LIS
ユーザー 鴨志田卓鴨志田卓
提出日時 2023-02-19 01:40:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 109 ms / 3,000 ms
コード長 415 bytes
コンパイル時間 1,538 ms
コンパイル使用メモリ 168,144 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-07-20 07:09:06
合計ジャッジ時間 6,629 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
13,568 KB
testcase_01 AC 57 ms
13,696 KB
testcase_02 AC 57 ms
13,696 KB
testcase_03 AC 56 ms
13,696 KB
testcase_04 AC 60 ms
13,696 KB
testcase_05 AC 60 ms
13,568 KB
testcase_06 AC 58 ms
13,696 KB
testcase_07 AC 58 ms
13,568 KB
testcase_08 AC 58 ms
13,696 KB
testcase_09 AC 60 ms
13,696 KB
testcase_10 AC 59 ms
13,696 KB
testcase_11 AC 57 ms
13,568 KB
testcase_12 AC 60 ms
13,696 KB
testcase_13 AC 56 ms
13,696 KB
testcase_14 AC 56 ms
13,568 KB
testcase_15 AC 55 ms
13,696 KB
testcase_16 AC 57 ms
13,696 KB
testcase_17 AC 60 ms
13,568 KB
testcase_18 AC 56 ms
13,696 KB
testcase_19 AC 60 ms
13,696 KB
testcase_20 AC 67 ms
13,568 KB
testcase_21 AC 66 ms
13,952 KB
testcase_22 AC 78 ms
14,080 KB
testcase_23 AC 91 ms
14,080 KB
testcase_24 AC 63 ms
14,080 KB
testcase_25 AC 92 ms
13,952 KB
testcase_26 AC 103 ms
14,208 KB
testcase_27 AC 102 ms
14,080 KB
testcase_28 AC 108 ms
13,952 KB
testcase_29 AC 109 ms
14,080 KB
testcase_30 AC 106 ms
13,952 KB
testcase_31 AC 89 ms
13,824 KB
testcase_32 AC 82 ms
13,824 KB
testcase_33 AC 80 ms
13,696 KB
testcase_34 AC 88 ms
13,824 KB
testcase_35 AC 85 ms
13,824 KB
testcase_36 AC 80 ms
13,696 KB
testcase_37 AC 101 ms
13,696 KB
testcase_38 AC 66 ms
13,824 KB
testcase_39 AC 58 ms
13,696 KB
testcase_40 AC 92 ms
13,824 KB
testcase_41 AC 92 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int N = 1e5 + 10;

int n, dp[N];

vector<int> g[N];

int main() {

    for(int i = N - 1; i > 0; i --)
        for(int j = i; j < N; j += i)
            g[j].push_back(i);

    cin >> n;
    for(int i = 1, x; i <= n; i ++) {
        cin >> x;
        for(int v : g[x])
            dp[x] = max(dp[x], dp[v] + 1);
    }
    cout << *max_element(dp + 1, dp + N);

}
0