結果

問題 No.390 最長の数列
ユーザー highdhighd
提出日時 2016-09-11 19:06:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 590 bytes
コンパイル時間 1,016 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-17 03:36:47
合計ジャッジ時間 21,881 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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