結果

問題 No.390 最長の数列
ユーザー peroonperoon
提出日時 2019-04-14 14:11:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,103 ms / 5,000 ms
コード長 1,536 bytes
コンパイル時間 1,184 ms
コンパイル使用メモリ 110,256 KB
実行使用メモリ 11,936 KB
最終ジャッジ日時 2024-09-18 23:34:15
合計ジャッジ時間 7,076 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1,103 ms
11,936 KB
testcase_06 AC 842 ms
11,888 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 6 ms
11,028 KB
testcase_09 AC 5 ms
10,892 KB
testcase_10 AC 766 ms
11,836 KB
testcase_11 AC 753 ms
11,812 KB
testcase_12 AC 767 ms
11,836 KB
testcase_13 AC 506 ms
11,520 KB
testcase_14 AC 298 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 6 ms
11,028 KB
testcase_17 AC 37 ms
11,144 KB
testcase_18 AC 59 ms
11,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<algorithm>
#include<complex>
#include<ctype.h>
#include<iomanip>
#include<iostream>
#include<fstream>
#include<map>
#include<math.h>
#include<numeric>
#include<queue>
#include<set>
#include<stack>
#include<stdio.h>
#include<string>
#include<string>
#include<vector>

using namespace std;
typedef long long ll;

#define FOR(i,a,b) for(ll i=(a);i<(b);++i)
#define ALL(v) (v).begin(), (v).end()
#define p(s) cout<<(s)<<endl
#define p2(s, t) cout << (s) << " " << (t) << endl
#define br() p("")
#define pn(s) cout << (#s) << " " << (s) << endl
#define p_yes() p("Yes")
#define p_no() p("No")

const ll mod = 1e9 + 7;
const ll inf = 1e18;

template < typename T >
void vprint(T &V){
	for(auto v : V){
    	cout << v << " ";
	}
	cout << endl;
}

set<ll> factorization(ll N){
    set<ll> se;
    for(int i=1; i*i<=N; i++){
        if(N%i==0){
            se.insert(i);
            se.insert(N/i);
        }
    }
    return se;
}

vector<ll> dp;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);

    // input
    ll N;
    cin >> N;

    vector<ll> A(N);
    FOR(i, 0, N){
        cin >> A.at(i);
    }
    sort(ALL(A));
    ll max_v = A.back();

    dp.resize(max_v + 1);

    for(ll a : A){
        dp[a] = 1;
    }

    for(ll a : A){
        auto se = factorization(a);
        for(ll v : se){
            if(v<a){
                dp[a] = max(dp[a], dp[v]+1);
            }
        }
    }

    ll answer = dp[1];
    FOR(i, 0, max_v+1){
        answer = max(answer, dp[i]);
    }

    p(answer);
    
    return 0;
}
0