結果

問題 No.390 最長の数列
ユーザー treeonetreeone
提出日時 2016-07-14 08:46:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 675 bytes
コンパイル時間 1,366 ms
コンパイル使用メモリ 162,944 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-10-02 10:57:29
合計ジャッジ時間 2,627 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
10,880 KB
testcase_01 AC 8 ms
10,880 KB
testcase_02 AC 8 ms
11,008 KB
testcase_03 AC 8 ms
11,008 KB
testcase_04 AC 8 ms
10,880 KB
testcase_05 AC 47 ms
11,648 KB
testcase_06 AC 86 ms
11,648 KB
testcase_07 AC 9 ms
11,008 KB
testcase_08 AC 9 ms
10,880 KB
testcase_09 AC 10 ms
10,880 KB
testcase_10 AC 54 ms
11,648 KB
testcase_11 AC 54 ms
11,648 KB
testcase_12 AC 53 ms
11,648 KB
testcase_13 AC 42 ms
11,648 KB
testcase_14 AC 48 ms
11,776 KB
testcase_15 AC 9 ms
11,008 KB
testcase_16 AC 9 ms
11,008 KB
testcase_17 AC 10 ms
10,880 KB
testcase_18 AC 12 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, n) for(int i = a; i < n; i++)
#define repp(i, n) rep(i, 0, n)
#define repb(i, a, b) for(int i = a; i >= b; i--)
#define all(a) a.begin(), a.end()
#define int long long
using namespace std;
typedef pair<int, int> P;

signed main(){
    int n;
    cin >> n;
    vector<int> x(n);
    rep(i, 0, n) cin >> x[i];
    sort(all(x));
    vector<int> dp(1000001);
    int MAX = x[n - 1];

    for(auto i:x){
        dp[i] = 1;
    }

    for(auto i: x){
        for(int j = 2 * i; j <= MAX; j += i){
            if(dp[j] == 0) continue;
            dp[j] = max(dp[j], dp[i] + 1);
        }
    }

    cout << *max_element(all(dp)) << endl;
}
0