結果

問題 No.390 最長の数列
ユーザー RubikunRubikun
提出日時 2019-08-04 18:08:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 418 ms / 5,000 ms
コード長 653 bytes
コンパイル時間 1,678 ms
コンパイル使用メモリ 173,356 KB
実行使用メモリ 7,564 KB
最終ジャッジ日時 2024-07-08 12:23:55
合計ジャッジ時間 4,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,168 KB
testcase_01 AC 4 ms
7,200 KB
testcase_02 AC 4 ms
7,064 KB
testcase_03 AC 3 ms
7,128 KB
testcase_04 AC 4 ms
7,216 KB
testcase_05 AC 418 ms
7,520 KB
testcase_06 AC 275 ms
7,552 KB
testcase_07 AC 4 ms
7,120 KB
testcase_08 AC 5 ms
7,296 KB
testcase_09 AC 4 ms
7,124 KB
testcase_10 AC 308 ms
7,564 KB
testcase_11 AC 301 ms
7,460 KB
testcase_12 AC 307 ms
7,504 KB
testcase_13 AC 217 ms
7,376 KB
testcase_14 AC 121 ms
7,464 KB
testcase_15 AC 4 ms
7,064 KB
testcase_16 AC 4 ms
7,168 KB
testcase_17 AC 18 ms
7,204 KB
testcase_18 AC 26 ms
7,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define all(x) (x).begin(),(x).end()
const int mod=1000000007,MAX=100003,INF=1<<30;

int main(){

    int N;cin>>N;
    vector<int> A(N);
    vector<int> B(1000001,0);
    for(int i=0;i<N;i++){
        cin>>A[i];
    }
    
    sort(all(A));
    
    for(int i=0;i<N;i++){
        int maxi=B[1];
        for(int j=2;j*j<=A[i];j++){
            if(A[i]%j==0){
                maxi=max({maxi,B[j],B[A[i]/j]});
            }
        }
        B[A[i]]=maxi+1;
    }
    
    int ans=0;
    
    for(int i=0;i<1000001;i++){
        ans=max(ans,B[i]);
    }
    
    cout<<ans<<endl;
    
}
0