結果

問題 No.390 最長の数列
ユーザー xuzijian629xuzijian629
提出日時 2018-10-29 23:08:51
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,144 ms / 5,000 ms
コード長 924 bytes
コンパイル時間 2,226 ms
コンパイル使用メモリ 199,968 KB
最終ジャッジ日時 2025-01-06 15:04:42
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
11,140 KB
testcase_01 AC 5 ms
11,140 KB
testcase_02 AC 5 ms
11,256 KB
testcase_03 AC 5 ms
11,084 KB
testcase_04 AC 4 ms
11,120 KB
testcase_05 AC 1,144 ms
12,548 KB
testcase_06 AC 733 ms
12,532 KB
testcase_07 AC 4 ms
10,960 KB
testcase_08 AC 5 ms
11,032 KB
testcase_09 AC 5 ms
11,260 KB
testcase_10 AC 832 ms
12,612 KB
testcase_11 AC 823 ms
12,488 KB
testcase_12 AC 825 ms
12,632 KB
testcase_13 AC 602 ms
12,272 KB
testcase_14 AC 295 ms
12,612 KB
testcase_15 AC 5 ms
11,248 KB
testcase_16 AC 5 ms
11,140 KB
testcase_17 AC 42 ms
11,064 KB
testcase_18 AC 67 ms
11,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using i64 = int64_t;
using vi = vector<i64>;
using vvi = vector<vi>;

int main() {
    int n;
    cin >> n;
    vi as(n), rev(1010101, -1);
    for (int i = 0; i < n; i++) {
        cin >> as[i];
    }
    sort(as.begin(), as.end());
    for (int i = 0; i < n; i++) {
        rev[as[i]] = i;
    }
    vi dp(n);
    dp[0] = 1;
    for (int i = 1; i < n; i++) {
        i64 t = 0;
        for (int j = 1; j * j <= as[i]; j++) {
            if (as[i] % j == 0) {
                if (rev[j] != -1) {
                    t = max(t, dp[rev[j]] + 1);
                }
                if (rev[as[i] / j] != -1) {
                    t = max(t, dp[rev[as[i] / j]] + 1);
                }
            }
        }
        dp[i] = t;
    }
    i64 ans = 1;
    for (int i = 1; i < n; i++) {
        // cout << dp[i] << endl;
        ans = max(ans, dp[i]);
    }
    cout << ans << endl;
}
0