結果

問題 No.979 Longest Divisor Sequence
ユーザー hrbt__hrbt__
提出日時 2020-03-09 20:40:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 504 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 1,586 ms
コンパイル使用メモリ 164,988 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-04-26 16:57:59
合計ジャッジ時間 3,316 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 8 ms
5,376 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 8 ms
5,376 KB
testcase_13 AC 50 ms
5,632 KB
testcase_14 AC 504 ms
5,504 KB
testcase_15 AC 167 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int n;
    cin >> n;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    vector<int> dp(3e5 + 1, 0);
    for (auto&& x : a) {
        for (int i = 1; i * i <= x; i++) {
            if (x % i == 0) {
                int j = x / i;
                if (i < x) dp[x] = max(dp[x], dp[i] + 1);
                if (j < x) dp[x] = max(dp[x], dp[j] + 1);
            }
        }
        dp[x] = max(dp[x], 1);
    }
    cout << *max_element(begin(dp), end(dp)) << endl;
}
0