結果

問題 No.390 最長の数列
ユーザー BantakoBantako
提出日時 2018-07-09 10:30:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 643 bytes
コンパイル時間 1,439 ms
コンパイル使用メモリ 170,064 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-07-08 00:49:19
合計ジャッジ時間 2,631 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
7,168 KB
testcase_01 AC 5 ms
7,296 KB
testcase_02 AC 6 ms
7,104 KB
testcase_03 AC 5 ms
7,120 KB
testcase_04 AC 6 ms
7,120 KB
testcase_05 AC 36 ms
7,512 KB
testcase_06 AC 53 ms
7,520 KB
testcase_07 AC 6 ms
7,056 KB
testcase_08 AC 5 ms
7,168 KB
testcase_09 AC 6 ms
7,168 KB
testcase_10 AC 43 ms
7,484 KB
testcase_11 AC 45 ms
7,456 KB
testcase_12 AC 41 ms
7,492 KB
testcase_13 AC 34 ms
7,424 KB
testcase_14 AC 53 ms
7,552 KB
testcase_15 AC 5 ms
7,088 KB
testcase_16 AC 4 ms
7,168 KB
testcase_17 AC 7 ms
7,080 KB
testcase_18 AC 7 ms
7,168 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main(){
      | ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,a,b) for(int i=int(a);i<int(b);++i)
using namespace std;
typedef long long ll;
int INF = (1LL << 30) - 1;
int MOD = 1e9+7;
main(){
    const int MAX_V = 1000000;
    int N;
    cin >> N;
    vector<int> V(N),cnt(MAX_V+1);
    rep(i,0,N){
        cin >> V[i];
        cnt[V[i]] = 1;
    }
    for(int i = MAX_V;i >= 1;i--){
        if(!cnt[i])continue;
        int maxi = 0;
        for(int j = i * 2;j <= MAX_V;j += i){
            maxi = max(maxi, cnt[j]);
        }
        cnt[i] = max(cnt[i], maxi + 1);
    }
    int maxi = 0;
    rep(i,1,MAX_V+1)maxi = max(maxi, cnt[i]);
    cout << maxi << endl;
}
0