結果

問題 No.390 最長の数列
ユーザー Y17Y17
提出日時 2020-02-03 23:52:32
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,876 ms / 5,000 ms
コード長 661 bytes
コンパイル時間 3,223 ms
コンパイル使用メモリ 162,004 KB
実行使用メモリ 120,576 KB
最終ジャッジ日時 2024-09-19 11:58:26
合計ジャッジ時間 37,876 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,730 ms
117,888 KB
testcase_01 AC 1,734 ms
118,016 KB
testcase_02 AC 1,748 ms
118,144 KB
testcase_03 AC 1,738 ms
118,144 KB
testcase_04 AC 1,706 ms
118,144 KB
testcase_05 AC 1,832 ms
119,680 KB
testcase_06 AC 1,823 ms
120,448 KB
testcase_07 AC 1,772 ms
118,144 KB
testcase_08 AC 1,739 ms
118,272 KB
testcase_09 AC 1,733 ms
118,272 KB
testcase_10 AC 1,836 ms
120,576 KB
testcase_11 AC 1,876 ms
120,576 KB
testcase_12 AC 1,769 ms
120,576 KB
testcase_13 AC 1,791 ms
118,272 KB
testcase_14 AC 1,806 ms
118,784 KB
testcase_15 AC 1,710 ms
118,144 KB
testcase_16 AC 1,754 ms
118,528 KB
testcase_17 AC 1,782 ms
120,064 KB
testcase_18 AC 1,731 ms
120,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

vector<int> vec[1000010];
int memo[1000010] = {};
int ans[100000] = {};
int main(){
    int n;
    int a[100010];
    cin >> n;
    for(int i = 0;i < n;i++) cin >> a[i];
    sort(a, a+n);

    for(int i = 1;i <= 1000000;i++){
        for(int j = i+i;j <= 1000000;j+=i){
            vec[j].push_back(i);
        }
    }



    int aans = 0;
    for(int i = n-1;i >= 0;i--){
        ans[i] = memo[a[i]] + 1;
        aans = max(aans, ans[i]);
        for(int j = 0;j < vec[a[i]].size();j++){
            memo[vec[a[i]][j]] = max(memo[vec[a[i]][j]], ans[i]);
        }
    }

    cout << aans << endl;

    return 0;
}
0