結果

問題 No.390 最長の数列
ユーザー iomiriomir
提出日時 2023-03-28 09:53:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 102 ms / 5,000 ms
コード長 632 bytes
コンパイル時間 1,390 ms
コンパイル使用メモリ 168,272 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-09-20 01:07:34
合計ジャッジ時間 2,734 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
18,816 KB
testcase_01 AC 11 ms
18,816 KB
testcase_02 AC 12 ms
18,816 KB
testcase_03 AC 13 ms
18,816 KB
testcase_04 AC 14 ms
18,792 KB
testcase_05 AC 42 ms
18,816 KB
testcase_06 AC 102 ms
18,816 KB
testcase_07 AC 11 ms
18,816 KB
testcase_08 AC 9 ms
18,884 KB
testcase_09 AC 11 ms
18,816 KB
testcase_10 AC 53 ms
18,816 KB
testcase_11 AC 53 ms
18,816 KB
testcase_12 AC 56 ms
18,816 KB
testcase_13 AC 43 ms
18,816 KB
testcase_14 AC 76 ms
18,944 KB
testcase_15 AC 10 ms
18,792 KB
testcase_16 AC 11 ms
18,796 KB
testcase_17 AC 12 ms
18,816 KB
testcase_18 AC 13 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define all(v) v.begin(),v.end()
using ll = long long;
using ull = unsigned long long;
using vll=vector<ll>;
using vvll = vector<vector<ll>>;

int main(){
    ll N;
    cin>>N;
    vll A(1e6+1);
    for(int i=0;i<N;i++){
        ll a;
        cin>>a;
        A[a]++;
    }

    vll dp(A.size(),-1);
    for(int i=1;i<=1e6;i++){
        if(!A[i])continue;
        if(dp[i]==-1)dp[i]=1;
        for(int j=2;i*j<=1e6;j++){
            if(!A[i*j])continue;
            dp[i*j]=max(dp[i*j],dp[i]+1);
        }
    }
    ll ans=0;
    for(auto x:dp) ans=max(ans,x);
    cout << ans << endl;
}
0