結果
問題 | No.390 最長の数列 |
ユーザー | sugarrr |
提出日時 | 2018-03-11 00:31:23 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,198 bytes |
コンパイル時間 | 760 ms |
コンパイル使用メモリ | 83,496 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 00:00:24 |
合計ジャッジ時間 | 3,028 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 49 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 4 ms
5,248 KB |
testcase_18 | WA | - |
ソースコード
#include<stdio.h> #include<string.h> #include<stdlib.h> #include<math.h> #include<stack> #include<queue> #include<vector> #include<algorithm> #include<string> #include<iostream> #include<set> #include<map> #include<bitset> using namespace std; typedef long long ll; #define i_7 1000000007 #define i_5 1000000005 ll mod(ll a){ ll c=a%i_7; if(c>=0)return c; else return c+i_7; } typedef pair<int,int> i_i; typedef pair<ll,ll> l_l; #define inf 100000000/*10^8*/ #define rep(i,l,r) for(int i=l;i<=r;i++) const double EPS=1E-8; //////////////////////////////////////// vector<int> div(int n){ vector<int>v; for(int i=1;i*i<=n;i++){ if(n%i==0){ v.push_back(i); if(i*i!=n&&i!=n)v.push_back(n/i); } } return v; } int main() { int n;cin>>n; int x[n];rep(i,0,n-1)cin>>x[i]; sort(x,x+n); int dp[100005];memset(dp,0,sizeof(dp)); int pos=1; dp[x[0]]=1; rep(i,2,100000){ if(x[pos]==i){ for(auto x:div(i)){ dp[i]=max(dp[i],dp[x]+1); } pos++; } } int ans=0; rep(i,1,100000)ans=max(ans,dp[i]); cout<<ans<<endl; return 0; }