結果
問題 |
No.390 最長の数列
|
ユーザー |
![]() |
提出日時 | 2016-07-15 17:27:44 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 575 bytes |
コンパイル時間 | 582 ms |
コンパイル使用メモリ | 64,648 KB |
実行使用メモリ | 12,580 KB |
最終ジャッジ日時 | 2024-10-15 01:12:18 |
合計ジャッジ時間 | 7,160 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 1 TLE * 1 -- * 13 |
ソースコード
#include<iostream> #include<algorithm> #include<vector> using namespace std; #define NMAX 100000 int x[NMAX]; vector<int> ai[NMAX]; int search(int i){ int maxn=0; if(ai[i].size()==0){ return 1; } for(int j=0;j<ai[i].size();j++){ maxn=max(maxn,search(ai[i][j])); } return maxn+1; } int main(){ int N; int maxn=-1; cin>>N; for(int i=0;i<N;i++) cin>>x[i]; sort(x,x+N); for(int i=0;i<N;i++){ for(int j=i+1;j<N;j++){ if(x[j]%x[i]==0){ ai[i].push_back(j); } } } for(int i=0;i<N;i++){ maxn=max(maxn,search(i)); } cout<<maxn<<endl; }