結果

問題 No.390 最長の数列
ユーザー chocoruskchocorusk
提出日時 2019-03-31 08:56:06
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 813 bytes
コンパイル時間 836 ms
コンパイル使用メモリ 97,944 KB
実行使用メモリ 7,424 KB
最終ジャッジ日時 2024-04-30 22:13:10
合計ジャッジ時間 2,520 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
7,296 KB
testcase_01 AC 9 ms
7,424 KB
testcase_02 AC 9 ms
7,296 KB
testcase_03 AC 9 ms
7,424 KB
testcase_04 AC 9 ms
7,296 KB
testcase_05 AC 39 ms
7,296 KB
testcase_06 AC 71 ms
7,424 KB
testcase_07 AC 9 ms
7,296 KB
testcase_08 AC 8 ms
7,296 KB
testcase_09 AC 9 ms
7,296 KB
testcase_10 AC 53 ms
7,168 KB
testcase_11 AC 52 ms
7,424 KB
testcase_12 AC 55 ms
7,424 KB
testcase_13 AC 39 ms
7,424 KB
testcase_14 AC 60 ms
7,296 KB
testcase_15 AC 8 ms
7,296 KB
testcase_16 AC 8 ms
7,296 KB
testcase_17 AC 9 ms
7,168 KB
testcase_18 AC 11 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<ll, int> P;

int main()
{
    int n; cin>>n;
	int dp[1000001]={};
	for(int i=0; i<n; i++){
		int x; cin>>x; dp[x]=1;
	}
	for(int i=1; i<=1000000; i++){
		if(dp[i]==0) continue;
		for(int j=2*i; j<=1000000; j+=i){
			if(dp[j]==0) continue;
			dp[j]=max(dp[j], dp[i]+1);
		}
	}
	int ans=1;
	for(int i=1; i<=1000000; i++){
		ans=max(dp[i], ans);
	}
	cout<<ans<<endl;
    return 0;
}
0