結果
問題 | No.390 最長の数列 |
ユーザー | ama_nuko |
提出日時 | 2018-06-11 15:03:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 750 bytes |
コンパイル時間 | 856 ms |
コンパイル使用メモリ | 95,380 KB |
実行使用メモリ | 11,932 KB |
最終ジャッジ日時 | 2024-06-30 13:32:32 |
合計ジャッジ時間 | 7,073 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
11,032 KB |
testcase_01 | AC | 5 ms
10,840 KB |
testcase_02 | AC | 4 ms
11,096 KB |
testcase_03 | AC | 5 ms
10,992 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1,114 ms
11,916 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 5 ms
11,172 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 572 ms
11,596 KB |
testcase_14 | WA | - |
testcase_15 | AC | 5 ms
11,064 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include <cmath> #include <iostream> #include <vector> #include <queue> #include <map> #include <set> #include <algorithm> #include <utility> #include <iomanip> #define int long long int #define rep(i, n) for(int i = 0; i < (n); ++i) using namespace std; typedef pair<int, int> P; const int INF = 1e15; const int MOD = 1e9+7; signed main(){ int n; cin >> n; vector<int> a(n); rep(i, n) cin >> a[i]; vector<int> dp(1e6 + 1); rep(i, n){ for(int j = 1; j * j <= a[i]; j++){ if(a[i] % j != 0){ continue; } dp[a[i]] = max(dp[a[i]], dp[a[i] / j] + 1); dp[a[i]] = max(dp[a[i]], dp[j] + 1); } } cout << dp[a[n-1]] << endl; return 0; }