結果
問題 | No.979 Longest Divisor Sequence |
ユーザー | fine |
提出日時 | 2020-01-31 21:49:42 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 581 ms / 2,000 ms |
コード長 | 775 bytes |
コンパイル時間 | 1,819 ms |
コンパイル使用メモリ | 172,836 KB |
実行使用メモリ | 208,388 KB |
最終ジャッジ日時 | 2024-09-17 07:51:02 |
合計ジャッジ時間 | 5,756 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 16 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; deque<int> memo[300005]; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; int maxa = 0; vector<int> a(n); for (int i = 0; i < n; ++i) { cin >> a[i]; memo[a[i]].push_back(i); maxa = max(maxa, a[i]); } vector<int> dp(n, 1); for (int i = 0; i < n; ++i) { memo[a[i]].pop_front(); for (int j = a[i] * 2; j <= maxa; j += a[i]) { if (!memo[j].empty()) { dp[memo[j].front()] = max(dp[memo[j].front()], dp[i] + 1); } } } int ans = 0; for (int i = 0; i < n; ++i) { ans = max(ans, dp[i]); } cout << ans << "\n"; return 0; }