結果

問題 No.979 Longest Divisor Sequence
ユーザー yuji9511yuji9511
提出日時 2020-01-31 22:18:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,272 bytes
コンパイル時間 1,810 ms
コンパイル使用メモリ 174,552 KB
実行使用メモリ 23,592 KB
最終ジャッジ日時 2023-10-17 10:14:42
合計ジャッジ時間 4,057 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
16,856 KB
testcase_01 AC 5 ms
16,860 KB
testcase_02 AC 6 ms
16,856 KB
testcase_03 AC 5 ms
16,860 KB
testcase_04 AC 5 ms
16,856 KB
testcase_05 AC 6 ms
16,860 KB
testcase_06 AC 5 ms
16,860 KB
testcase_07 WA -
testcase_08 AC 5 ms
16,860 KB
testcase_09 AC 6 ms
16,860 KB
testcase_10 AC 19 ms
16,956 KB
testcase_11 AC 19 ms
16,960 KB
testcase_12 AC 19 ms
16,960 KB
testcase_13 AC 24 ms
17,668 KB
testcase_14 WA -
testcase_15 AC 405 ms
19,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*** author: yuji9511 ***/
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using lpair = pair<ll, ll>;
const ll MOD = 1e9+7;
const ll INF = 1e18;
#define rep(i,m,n) for(ll i=(m);i<(n);i++)
#define rrep(i,m,n) for(ll i=(m);i>=(n);i--)
#define printa(x,n) for(ll i=0;i<n;i++){cout<<(x[i])<<" \n"[i==n-1];};
void print() {}
template <class H,class... T>
void print(H&& h, T&&... t){cout<<h<<" \n"[sizeof...(t)==0];print(forward<T>(t)...);}
struct Integer{
public:
    ll gcd(ll a,ll b){return b ? gcd(b, a % b) : a;}
    ll lcm(ll a,ll b){return a / gcd(a, b) * b;}

    bool isPrime(ll x){
        if(x < 2) return false;
        if(x == 2) return true;
        if(x % 2 == 0) return false;
        for(ll i = 3;i <= sqrt(x) + 1;i += 2) if(x % i == 0) return false;
        return true;
    }

    vector<ll> divisor(ll M){
        vector<ll> dd;
        for(ll i = 1; i * i <= M; i++){
            if(M % i == 0){
                dd.push_back(i);
                if(i * i != M) dd.push_back(M / i);
            }
        }
        sort(dd.begin(), dd.end());
        return dd;
    }

    vector<ll> factor(ll M){ //素因数分解
        vector<ll> dd;
        if(M == 1){
            dd.push_back(1);
            return dd;
        }
        for(ll i = 2; i*i <= M; i++){
            while(M % i == 0){
                dd.push_back(i);
                M /= i;
            }
        }
        if(M != 1) dd.push_back(M);
        sort(dd.begin(), dd.end());
        return dd;
    }
};
ll A[300010];

ll cnt[300010] = {};
vector<ll> pos[300010];

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll N;
    cin >> N;
    rep(i,0,N) cin >> A[i];
    Integer it;

    rep(i,0,N){
        if(cnt[A[i]] > 0){
            A[i] = INF;
        }else{
            cnt[A[i]]++;
        }
    }
    rep(i,0,N){
        if(A[i] != INF) pos[A[i]].push_back(i);
    }
    ll ans = 0;
    ll dp[300010] = {};
    rep(i,0,N){
        if(A[i] == INF) continue;
        dp[i] = 1;
        vector<ll> dd = it.divisor(A[i]);
        for(auto &e: dd){
            for(auto &f: pos[e]){
                if(f >= i) break;
                dp[i] = max(dp[i], dp[f]+1);
            }
        }

    }
    rep(i,0,N) ans = max(ans, dp[i]);
    print(ans);
    

}
0