結果
問題 | No.979 Longest Divisor Sequence |
ユーザー | hanbei_dayo |
提出日時 | 2020-02-01 16:05:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 827 bytes |
コンパイル時間 | 750 ms |
コンパイル使用メモリ | 84,428 KB |
実行使用メモリ | 5,504 KB |
最終ジャッジ日時 | 2024-09-18 20:04:51 |
合計ジャッジ時間 | 2,333 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 10 ms
5,376 KB |
testcase_11 | AC | 10 ms
5,376 KB |
testcase_12 | AC | 9 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | AC | 538 ms
5,504 KB |
testcase_15 | AC | 180 ms
5,376 KB |
ソースコード
#include<iostream> #include<algorithm> #include<vector> #include<string> #include<utility> #include<map> #include<set> #include<queue> #include<stack> #include<math.h> using namespace std; #define mod (1000000000+7) #define N (10007) #define INF 1e16 typedef long long ll; typedef pair<ll,ll> P; int dp[300010]; int main(){ int n; cin>>n; vector<int>a(n); for(int i=0;i<n;i++)cin>>a[i]; for(int i=0;i<n;i++){ for(int j=1;j*j<=a[i];j++){ if(j==1)dp[a[i]]=max(dp[a[i]],dp[j]+1); else{ if(a[i]%j==0){ dp[a[i]]=max(dp[a[i]],dp[j]+1); dp[a[i]]=max(dp[a[i]],dp[a[i]/j]+1); } } } } int ans = 0; for(int i=0;i<300010;i++)ans=max(ans,dp[i]); cout<<ans<<endl; return 0; }