結果

問題 No.979 Longest Divisor Sequence
ユーザー finefine
提出日時 2020-01-31 21:49:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 581 ms / 2,000 ms
コード長 775 bytes
コンパイル時間 1,819 ms
コンパイル使用メモリ 172,836 KB
実行使用メモリ 208,388 KB
最終ジャッジ日時 2024-09-17 07:51:02
合計ジャッジ時間 5,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 180 ms
204,988 KB
testcase_01 AC 181 ms
204,932 KB
testcase_02 AC 176 ms
204,956 KB
testcase_03 AC 174 ms
204,996 KB
testcase_04 AC 176 ms
204,928 KB
testcase_05 AC 176 ms
204,952 KB
testcase_06 AC 173 ms
205,060 KB
testcase_07 AC 175 ms
204,880 KB
testcase_08 AC 174 ms
204,868 KB
testcase_09 AC 174 ms
204,908 KB
testcase_10 AC 176 ms
205,020 KB
testcase_11 AC 176 ms
204,972 KB
testcase_12 AC 176 ms
204,956 KB
testcase_13 AC 220 ms
208,388 KB
testcase_14 AC 581 ms
207,156 KB
testcase_15 AC 246 ms
205,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

deque<int> memo[300005];

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

    int maxa = 0;
    vector<int> a(n);
    for (int i = 0; i < n; ++i) {
        cin >> a[i];
        memo[a[i]].push_back(i);
        maxa = max(maxa, a[i]);
    }

    vector<int> dp(n, 1);
    for (int i = 0; i < n; ++i) {
        memo[a[i]].pop_front();
        for (int j = a[i] * 2; j <= maxa; j += a[i]) {
            if (!memo[j].empty()) {
                dp[memo[j].front()] = max(dp[memo[j].front()], dp[i] + 1);
            }
        }
    }

    int ans = 0;
    for (int i = 0; i < n; ++i) {
        ans = max(ans, dp[i]);
    }
    cout << ans << "\n";
    return 0;
}
0