結果

問題 No.979 Longest Divisor Sequence
ユーザー firiexpfiriexp
提出日時 2020-01-31 22:05:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 535 ms / 2,000 ms
コード長 969 bytes
コンパイル時間 1,072 ms
コンパイル使用メモリ 100,304 KB
実行使用メモリ 39,476 KB
最終ジャッジ日時 2024-04-27 03:04:06
合計ジャッジ時間 9,100 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 439 ms
36,996 KB
testcase_01 AC 434 ms
37,136 KB
testcase_02 AC 409 ms
37,152 KB
testcase_03 AC 445 ms
37,084 KB
testcase_04 AC 437 ms
37,108 KB
testcase_05 AC 416 ms
37,208 KB
testcase_06 AC 471 ms
36,932 KB
testcase_07 AC 445 ms
36,940 KB
testcase_08 AC 408 ms
37,100 KB
testcase_09 AC 409 ms
36,932 KB
testcase_10 AC 425 ms
37,144 KB
testcase_11 AC 445 ms
37,092 KB
testcase_12 AC 414 ms
37,268 KB
testcase_13 AC 477 ms
39,476 KB
testcase_14 AC 535 ms
39,424 KB
testcase_15 AC 454 ms
37,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>
#include <limits>

static constexpr int MOD = 1000000007;
using ll = long long;
using u32 = uint32_t;
using u64 = unsigned long long;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;

int main() {
    int n;
    cin >> n;
    int M = 300001;
    vector<vector<int>> B(M);
    vector<int> v(n);
    for (auto &&k : v) scanf("%d", &k);
    vector<int> dp(n, 1), dp2(M, 0);
    for (int i = 1; i < M; ++i) {
        for (int j = 2*i; j < M; j += i) {
            B[j].emplace_back(i);
        }
    }
    for (int i = 0; i < n; ++i) {
        dp2[v[i]] = max(dp2[v[i]], 1);
        for (auto &&j : B[v[i]]) {
            dp2[v[i]] = max(dp2[v[i]], dp2[j]+1);
        }
    }
    cout << *max_element(dp2.begin(),dp2.end()) << "\n";
    return 0;
}
0