結果

問題 No.390 最長の数列
ユーザー recososorecososo
提出日時 2020-02-26 14:31:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 66 ms / 5,000 ms
コード長 550 bytes
コンパイル時間 1,457 ms
コンパイル使用メモリ 168,336 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-10-13 15:19:36
合計ジャッジ時間 2,537 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
7,424 KB
testcase_01 AC 7 ms
7,424 KB
testcase_02 AC 8 ms
7,424 KB
testcase_03 AC 7 ms
7,296 KB
testcase_04 AC 7 ms
7,424 KB
testcase_05 AC 35 ms
7,552 KB
testcase_06 AC 66 ms
7,552 KB
testcase_07 AC 7 ms
7,424 KB
testcase_08 AC 6 ms
7,424 KB
testcase_09 AC 6 ms
7,424 KB
testcase_10 AC 45 ms
7,552 KB
testcase_11 AC 45 ms
7,552 KB
testcase_12 AC 44 ms
7,552 KB
testcase_13 AC 35 ms
7,432 KB
testcase_14 AC 57 ms
7,552 KB
testcase_15 AC 6 ms
7,296 KB
testcase_16 AC 5 ms
7,424 KB
testcase_17 AC 7 ms
7,424 KB
testcase_18 AC 8 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
    int n;cin >> n;
    vector<int> x(n);
    int dp[1000001];
    memset(dp,0,sizeof(dp));
    for(int i=0;i<n;i++){
        cin >> x[i];
        dp[x[i]]=1;
    }
    for(int i=1;i<1000001;i++){
        if(dp[i]){
            for(int j=2;j*i<=1000000;j++){
                if(dp[i*j]){
                    dp[i*j]=max(dp[i*j],dp[i]+1);
                }
            }
        }
    }
    int ans=0;
    for(int i=1;i<1000001;i++){
        ans=max(ans,dp[i]);
    }
    cout << ans << endl;
}
0