結果

問題 No.979 Longest Divisor Sequence
ユーザー roarisroaris
提出日時 2020-07-25 23:45:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,205 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 1,938 ms
コンパイル使用メモリ 200,964 KB
実行使用メモリ 8,040 KB
最終ジャッジ日時 2024-06-27 18:24:14
合計ジャッジ時間 4,272 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 16 ms
5,888 KB
testcase_11 AC 17 ms
5,760 KB
testcase_12 AC 16 ms
5,760 KB
testcase_13 AC 19 ms
5,888 KB
testcase_14 AC 1,205 ms
8,040 KB
testcase_15 AC 399 ms
6,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i=0; i<n; i++)
#define pb push_back
#define int long long

int N;
int A[300010];
int dp[300010];
 
signed main() {
    cin.tie(0); ios::sync_with_stdio(false);
    cin >> N;
    rep(i, N) cin >> A[i];
    for (auto& Ai:A) {
        dp[Ai] = 1;
        if (Ai==1) continue;
        int i = 1;
        while (i*i<=Ai) {
            if (Ai%i==0) {
                if (i==1) dp[Ai] = max(dp[Ai], dp[i]+1);
                else dp[Ai] = max({dp[Ai], dp[i]+1, dp[Ai/i]+1});
            }
            i++;
        }
    }
    int ans = 0;
    rep(i, 300010) ans = max(ans, dp[i]);
    cout << ans << endl;
}
0