結果

問題 No.390 最長の数列
ユーザー masamasa
提出日時 2016-07-09 19:29:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 517 bytes
コンパイル時間 592 ms
コンパイル使用メモリ 70,528 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-10-02 10:46:41
合計ジャッジ時間 1,522 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
7,116 KB
testcase_01 AC 5 ms
7,196 KB
testcase_02 AC 6 ms
7,120 KB
testcase_03 AC 5 ms
7,084 KB
testcase_04 AC 6 ms
7,168 KB
testcase_05 AC 34 ms
7,180 KB
testcase_06 AC 50 ms
7,080 KB
testcase_07 AC 5 ms
7,080 KB
testcase_08 AC 4 ms
7,168 KB
testcase_09 AC 5 ms
7,168 KB
testcase_10 AC 38 ms
7,120 KB
testcase_11 AC 37 ms
7,116 KB
testcase_12 AC 37 ms
7,296 KB
testcase_13 AC 32 ms
7,268 KB
testcase_14 AC 52 ms
7,296 KB
testcase_15 AC 4 ms
7,236 KB
testcase_16 AC 4 ms
7,156 KB
testcase_17 AC 6 ms
7,260 KB
testcase_18 AC 6 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <utility>

using namespace std;

const int X_MAX = 1e6;

int main() {
	int n, x;
	vector<int> nums(X_MAX + 1, 0);

	cin >> n;
	for (int i = 0; i < n; i++) {
		cin >> x;
		nums[x] = 1;
	}

	int ans = 0;
	for (int i = X_MAX; i >= 1; i--) {
		if (nums[i] == 0) {
			continue;
		}

		for (int j = i * 2; j <= X_MAX; j += i) {
			nums[i] = max(nums[i], nums[j] + 1);
		}
		ans = max(ans, nums[i]);
	}
	cout << ans << endl;
	return 0;
}
0