結果

問題 No.390 最長の数列
ユーザー aim_cpoaim_cpo
提出日時 2017-06-21 01:08:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 1,238 bytes
コンパイル時間 926 ms
コンパイル使用メモリ 94,036 KB
実行使用メモリ 7,776 KB
最終ジャッジ日時 2024-10-02 12:11:07
合計ジャッジ時間 1,965 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
7,328 KB
testcase_01 AC 6 ms
7,336 KB
testcase_02 AC 6 ms
7,224 KB
testcase_03 AC 5 ms
7,512 KB
testcase_04 AC 5 ms
7,412 KB
testcase_05 AC 42 ms
7,732 KB
testcase_06 AC 63 ms
7,756 KB
testcase_07 AC 5 ms
7,340 KB
testcase_08 AC 4 ms
7,440 KB
testcase_09 AC 4 ms
7,404 KB
testcase_10 AC 45 ms
7,728 KB
testcase_11 AC 45 ms
7,756 KB
testcase_12 AC 44 ms
7,776 KB
testcase_13 AC 33 ms
7,700 KB
testcase_14 AC 59 ms
7,724 KB
testcase_15 AC 4 ms
7,276 KB
testcase_16 AC 4 ms
7,356 KB
testcase_17 AC 6 ms
7,352 KB
testcase_18 AC 7 ms
7,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <functional>
#include <cstdlib>
#include <sstream>
#include <string>
#include <set>
#include <map>
#include <stack>
#include <queue>
#include <deque>
#include <complex>
#include <vector>
#include <bitset>
#include <cstdio>
#include <cmath>
#include <time.h>
#include <tuple>
#define all(c) ((c).begin(),(c).end())
#define rall(c) ((c).rbegin(),(c).rend())
#define ll long long
#define fi first
#define se second
#define inf (999999999)
using namespace std;
const ll MOD = 1e9 + 7;
const double PI = acos(-1.0);
//---------------------------------------------------------------------------------------------//
int n;
int a[100001];
int dp[1000001];

inline int solve() {
	for (int i = 0; i < 1000001; i++) {
		dp[i] = -inf;
	}
	for (int i = 0; i < n; i++)dp[a[i]] = 1;
	for (int i = 1; i < 1000001; i++) {
		if (dp[i] >0) {
			int now = i * 2;
			while (now<=1000001) {
				if (dp[now]!=-inf) {
					dp[now] = max(dp[now], dp[i] + 1);
				}
				now += i;
			}
		}
	}
	int res = -inf;
	for (int i = 0; i < n; i++) {
		res = max(res, dp[a[i]]);
	}
	return res;
}
int main() {
	cin >> n;
	for (int i = 0; i < n; i++) {
		cin >> a[i];
	}
	sort(a, a + n);
	cout << solve() << endl;
	return 0;
}
0