結果

問題 No.979 Longest Divisor Sequence
ユーザー leaf_1415leaf_1415
提出日時 2020-01-31 21:51:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 820 bytes
コンパイル時間 1,011 ms
コンパイル使用メモリ 62,636 KB
実行使用メモリ 61,124 KB
最終ジャッジ日時 2024-09-17 07:53:28
合計ジャッジ時間 7,316 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
55,236 KB
testcase_01 AC 354 ms
55,232 KB
testcase_02 AC 342 ms
55,240 KB
testcase_03 AC 336 ms
55,236 KB
testcase_04 AC 341 ms
57,344 KB
testcase_05 AC 349 ms
55,108 KB
testcase_06 AC 302 ms
55,108 KB
testcase_07 AC 326 ms
55,236 KB
testcase_08 AC 288 ms
59,268 KB
testcase_09 AC 288 ms
55,236 KB
testcase_10 AC 298 ms
57,924 KB
testcase_11 AC 303 ms
56,900 KB
testcase_12 AC 300 ms
56,772 KB
testcase_13 AC 336 ms
60,936 KB
testcase_14 AC 358 ms
61,124 KB
testcase_15 AC 335 ms
58,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
#define llint long long
#define mod 1000000007

using namespace std;

llint n;
llint a[300005];
vector<llint> vec[300005];
llint pred[300005];
llint dp[300005];

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n;
	for(int i = 1; i <= n; i++) cin >> a[i];
	
	for(int i = 1; i <= 300000; i++){
		for(int j = 2*i; j <= 300000; j += i){
			vec[j].push_back(i);
		}
	}
	
	for(int i = 1; i <= n; i++){
		dp[i] = 1;
		for(int j = 0; j < vec[a[i]].size(); j++){
			llint x = vec[a[i]][j];
			if(pred[x] == 0) continue;
			dp[i] = max(dp[i], dp[pred[x]]+1);
		}
		pred[a[i]] = i;
	}
	
	//for(int i = 1; i <= n; i++) cout << dp[i] << " "; cout << endl;
	
	llint ans = 0;
	for(int i = 1; i <= n; i++) ans = max(ans, dp[i]);
	cout << ans << endl;
	
	return 0;
}
0