結果

問題 No.390 最長の数列
ユーザー tabataba
提出日時 2017-05-19 06:10:23
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 819 bytes
コンパイル時間 1,792 ms
コンパイル使用メモリ 143,528 KB
最終ジャッジ日時 2025-01-05 00:24:36
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 1 ms
12,944 KB
testcase_02 AC 2 ms
30,876 KB
testcase_03 AC 1 ms
13,636 KB
testcase_04 AC 2 ms
13,732 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 2 ms
13,732 KB
testcase_08 AC 2 ms
13,768 KB
testcase_09 AC 2 ms
12,068 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 37 ms
6,816 KB
testcase_18 AC 95 ms
18,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <cmath>
#include <cassert>
#include <random>
#include <vector>
#include <algorithm>
#include <array>
#include <functional>
#include <utility>
#include <regex>
#include <tuple>
#include <map>
#include <set>

using namespace std;

int main(){
	int64_t n;
	-scanf("%ld",&n);
	vector<int> x(n);
	for(int i=0;i<n;i++){
		-scanf("%d",&x[i]);
	}
	sort(x.begin(),x.end());
	vector<vector<int>> t(n);
	for(int i=0;i<n;i++){
		for(int j=i+1;j<n;j++){
			if(x[j]%x[i]==0){
				t[i].push_back(j);
			}
		}
	}
	set<int> b;
	for(int i=0;i<n;i++)b.insert(i);
	int cnt=0;
	while(!b.empty()){
		cnt++;
		set<int> nb;
		for_each(b.begin(),b.end(),[&t,&nb](auto i){
			for_each(t[i].begin(),t[i].end(),[&nb](auto i){
				nb.insert(i);
			});
		});
		b=nb;
	}
	printf("%d\n",cnt);
	return 0;
}
0