結果

問題 No.390 最長の数列
ユーザー Ai3ShotaAi3Shota
提出日時 2018-06-29 17:14:33
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 571 bytes
コンパイル時間 1,347 ms
コンパイル使用メモリ 163,356 KB
実行使用メモリ 7,756 KB
最終ジャッジ日時 2024-06-30 23:50:27
合計ジャッジ時間 2,652 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,148 KB
testcase_01 AC 4 ms
6,976 KB
testcase_02 AC 3 ms
7,140 KB
testcase_03 AC 5 ms
7,108 KB
testcase_04 AC 4 ms
7,040 KB
testcase_05 AC 45 ms
7,692 KB
testcase_06 AC 69 ms
7,712 KB
testcase_07 AC 3 ms
7,136 KB
testcase_08 AC 4 ms
7,080 KB
testcase_09 AC 5 ms
7,132 KB
testcase_10 AC 55 ms
7,720 KB
testcase_11 AC 55 ms
7,660 KB
testcase_12 AC 54 ms
7,732 KB
testcase_13 AC 36 ms
7,756 KB
testcase_14 AC 42 ms
7,660 KB
testcase_15 AC 4 ms
6,960 KB
testcase_16 AC 5 ms
7,108 KB
testcase_17 AC 7 ms
7,000 KB
testcase_18 AC 9 ms
7,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
typedef long long ll;
using namespace std;

int N;
vector<int> x;
vector<int> dp(1000001, 0);

int main(void){
    
    cin >> N;
    for(int i = 0; i < N; ++i){
        int n; cin >> n;
        x.push_back(n);
        dp[x[i]] = 1;
    }
    sort(x.begin(), x.end());
    
    for(auto i : x){
        for(int j = i + i; j <= x[N - 1]; j += i){
            if(dp[j]) dp[j] = max(dp[j], dp[i] + 1);
        }
    }
    
    int ans = 0;
    for(int i = 0; i <= x[N - 1]; ++i) ans = max(ans, dp[i]);
    cout << ans << endl;
    
    return 0;
}

0