結果
問題 | No.390 最長の数列 |
ユーザー | beet |
提出日時 | 2018-11-13 10:12:43 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 123 ms / 5,000 ms |
コード長 | 957 bytes |
コンパイル時間 | 2,355 ms |
コンパイル使用メモリ | 202,856 KB |
最終ジャッジ日時 | 2025-01-06 16:34:11 |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
18,720 KB |
testcase_01 | AC | 11 ms
18,736 KB |
testcase_02 | AC | 11 ms
18,716 KB |
testcase_03 | AC | 12 ms
19,012 KB |
testcase_04 | AC | 12 ms
18,828 KB |
testcase_05 | AC | 53 ms
19,524 KB |
testcase_06 | AC | 123 ms
19,528 KB |
testcase_07 | AC | 10 ms
18,880 KB |
testcase_08 | AC | 10 ms
18,884 KB |
testcase_09 | AC | 11 ms
18,728 KB |
testcase_10 | AC | 62 ms
19,680 KB |
testcase_11 | AC | 65 ms
19,540 KB |
testcase_12 | AC | 62 ms
19,480 KB |
testcase_13 | AC | 46 ms
19,644 KB |
testcase_14 | AC | 85 ms
19,480 KB |
testcase_15 | AC | 12 ms
18,708 KB |
testcase_16 | AC | 9 ms
18,888 KB |
testcase_17 | AC | 12 ms
18,888 KB |
testcase_18 | AC | 12 ms
18,976 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} template<typename T> vector<T> compress(vector<T> v){ sort(v.begin(),v.end()); v.erase(unique(v.begin(),v.end()),v.end()); return v; } template<typename T> map<T, Int> dict(const vector<T> &v){ map<T, Int> res; for(Int i=0;i<(Int)v.size();i++) res[v[i]]=i; return res; } //INSERT ABOVE HERE signed main(){ Int n; cin>>n; vector<Int> x(n); for(Int i=0;i<n;i++) cin>>x[i]; x=compress(x); const Int MAX = 1e6+100; const Int INF = 1e9; vector<Int> dp(MAX,-INF),ex(MAX,0); for(Int a:x) ex[a]=1; for(Int a:x){ chmax(dp[a],1); for(Int b=a+a;b<MAX;b+=a) if(ex[b]) chmax(dp[b],dp[a]+1); } Int ans=0; for(Int i=0;i<MAX;i++) chmax(ans,dp[i]); cout<<ans<<endl; return 0; }