結果

問題 No.390 最長の数列
ユーザー highdhighd
提出日時 2016-09-11 19:06:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 590 bytes
コンパイル時間 669 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-04-28 12:12:09
合計ジャッジ時間 7,339 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 41 ms
5,376 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

void run(std::vector<int>&xs, std::vector<int>&xs_dp,int index,int cost) {
	for (unsigned int i = index+1; i < xs.size(); i++) {
		if (xs[i] % xs[index] == 0&&xs_dp[i]<cost+1) {
			xs_dp[i] = cost+1;
			run(xs, xs_dp, i,cost+1);
		}
	}
}

int main() {
	int n;
	std::cin >> n;
	std::vector<int> xs(n);
	std::vector<int> xs_dp(n);
	for (int i = 0; i < n; i++) {
		std::cin >> xs[i];
		xs_dp[i] = 1;
	}
	std::sort(xs.begin(), xs.end());
	run(xs, xs_dp, 0, 1);
	std::cout << *std::max_element(xs_dp.begin(), xs_dp.end())<<std::endl;
}
0