結果

問題 No.390 最長の数列
ユーザー SAAD AHMADSAAD AHMAD
提出日時 2024-06-27 09:16:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 714 ms / 5,000 ms
コード長 807 bytes
コンパイル時間 792 ms
コンパイル使用メモリ 76,000 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-27 09:16:19
合計ジャッジ時間 3,333 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 41 ms
6,940 KB
testcase_06 AC 714 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 6 ms
6,944 KB
testcase_10 AC 138 ms
6,944 KB
testcase_11 AC 149 ms
6,944 KB
testcase_12 AC 141 ms
6,940 KB
testcase_13 AC 215 ms
6,940 KB
testcase_14 AC 141 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 6 ms
6,944 KB
testcase_18 AC 9 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

void solve() {
    int n;
    cin >> n;
    vector<int> a(n);
    for (int i = 0; i < n; ++i) {
        cin >> a[i];
    }
    
    sort(a.begin(), a.end());
    
    vector<int> dp(n, 1);
    
    for (int i = 0; i < n; ++i) {
        int x = a[i];
        
        for (int k = 2; (long long)x * k <= a[n-1]; ++k) {
            int j = x * k;
            auto it = lower_bound(a.begin(), a.end(), j);
            if (it != a.end() && *it == j) {
                dp[it - a.begin()] = max(dp[it - a.begin()], dp[i] + 1);
            }
        }
    }
    
    int longest_good_sequence_length = *max_element(dp.begin(), dp.end());
    cout << longest_good_sequence_length << '\n';
}

int main() {
    solve();
    return 0;
}
0