結果

問題 No.390 最長の数列
ユーザー xuzijian629xuzijian629
提出日時 2018-10-29 23:08:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,122 ms / 5,000 ms
コード長 924 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 206,308 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-11-19 09:19:20
合計ジャッジ時間 8,035 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
11,208 KB
testcase_01 AC 5 ms
11,208 KB
testcase_02 AC 5 ms
11,144 KB
testcase_03 AC 5 ms
11,136 KB
testcase_04 AC 4 ms
11,136 KB
testcase_05 AC 1,122 ms
12,756 KB
testcase_06 AC 705 ms
12,672 KB
testcase_07 AC 6 ms
11,100 KB
testcase_08 AC 5 ms
11,264 KB
testcase_09 AC 5 ms
11,200 KB
testcase_10 AC 796 ms
12,672 KB
testcase_11 AC 801 ms
12,800 KB
testcase_12 AC 795 ms
12,644 KB
testcase_13 AC 582 ms
12,288 KB
testcase_14 AC 287 ms
12,672 KB
testcase_15 AC 6 ms
11,136 KB
testcase_16 AC 5 ms
11,052 KB
testcase_17 AC 40 ms
11,136 KB
testcase_18 AC 65 ms
11,264 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