結果

問題 No.390 最長の数列
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2020-06-02 18:41:11
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 758 bytes
コンパイル時間 1,397 ms
コンパイル使用メモリ 163,956 KB
実行使用メモリ 8,060 KB
最終ジャッジ日時 2024-05-03 08:29:16
合計ジャッジ時間 2,969 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
7,044 KB
testcase_01 AC 6 ms
7,040 KB
testcase_02 AC 6 ms
7,040 KB
testcase_03 AC 6 ms
7,180 KB
testcase_04 AC 7 ms
6,944 KB
testcase_05 AC 43 ms
7,780 KB
testcase_06 AC 74 ms
7,716 KB
testcase_07 AC 6 ms
7,000 KB
testcase_08 AC 5 ms
7,064 KB
testcase_09 AC 5 ms
7,220 KB
testcase_10 AC 48 ms
8,060 KB
testcase_11 AC 48 ms
7,792 KB
testcase_12 AC 48 ms
7,824 KB
testcase_13 AC 36 ms
7,660 KB
testcase_14 AC 68 ms
7,936 KB
testcase_15 AC 5 ms
7,064 KB
testcase_16 AC 5 ms
7,280 KB
testcase_17 AC 7 ms
7,024 KB
testcase_18 AC 8 ms
7,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2020.06.02 18:41:05
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

int main() {
    int n;cin >> n;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    sort(a.begin(), a.end());
    vector<int> b(1000000,-1);
    for (int i = 0; i < n; i++) {
        b[a[i]-1] = i;
    }
    vector<int> c(n,1);
    int ans = 1;
    for (int i = 0; i < 1000000; i++) {
        if (b[i] == -1) continue;
        for (int j = 2 * i + 2; j <= 1000000; j += i + 1) {
            if (b[j-1] == -1) continue;
            c[b[j-1]] = max(c[b[j-1]],c[b[i]] + 1);
            ans = max(ans,c[b[j-1]]);
        }
    }
    cout << ans << endl;
    return 0;
}
0