結果

問題 No.390 最長の数列
ユーザー ngtkanangtkana
提出日時 2020-04-05 18:45:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 444 ms / 5,000 ms
コード長 1,316 bytes
コンパイル時間 2,362 ms
コンパイル使用メモリ 210,560 KB
実行使用メモリ 20,268 KB
最終ジャッジ日時 2024-07-03 08:21:01
合計ジャッジ時間 4,766 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 54 ms
20,200 KB
testcase_06 AC 444 ms
20,268 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 41 ms
19,440 KB
testcase_09 AC 60 ms
19,432 KB
testcase_10 AC 193 ms
20,176 KB
testcase_11 AC 191 ms
20,244 KB
testcase_12 AC 202 ms
20,084 KB
testcase_13 AC 56 ms
20,228 KB
testcase_14 AC 47 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 52 ms
19,296 KB
testcase_17 AC 71 ms
19,564 KB
testcase_18 AC 93 ms
19,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define ALL(v) std::begin(v),std::end(v)
using lint=long long;
using lubl=long double;
void cmn(lint&x,lint y){if(x>y)x=y;}
int main(){
    std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);
    std::cout.setf(std::ios_base::fixed);std::cout.precision(15);
    lint n;std::cin>>n;
    std::vector<lint>a(n);
    for(lint&x:a)std::cin>>x;
    std::sort(ALL(a));
    lint m=*std::max_element(ALL(a))+1;
    std::vector<lint>primes;
    {
        std::vector<lint>sieve(m+1);
        for(lint p=2;p<=m;p++){
            if(sieve.at(p))continue;
            primes.push_back(p);
            for(lint i=p*p;i<=m;i+=p)sieve.at(i)=true;
        }
    }
    std::vector<lint>dp(m),ep(m,-1);
    for(lint len=0;;len++){
        dp.assign(m,n);
        for(lint i=n-1;i>=0;i--){
            if(i<=ep.at(a.at(i)))continue;
            dp.at(a.at(i))=i;
        }
        if(std::all_of(ALL(dp),[n](lint x){return x==n;})){
            std::cout<<len<<'\n';
            return 0;
        }
        ep.assign(m,n);
        for(lint p:primes){
            for(lint i=1;i<=(m-1)/p;i++){
                cmn(ep.at(i*p),dp.at(i));
            }
        }
        for(lint p:primes){
            for(lint i=1;i<=(m-1)/p;i++){
                cmn(ep.at(i*p),ep.at(i));
            }
        }
    }
}
0