結果
問題 | No.979 Longest Divisor Sequence |
ユーザー | risujiroh |
提出日時 | 2020-01-31 22:11:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 837 bytes |
コンパイル時間 | 1,612 ms |
コンパイル使用メモリ | 173,412 KB |
実行使用メモリ | 31,344 KB |
最終ジャッジ日時 | 2024-09-17 08:27:46 |
合計ジャッジ時間 | 4,952 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 139 ms
30,220 KB |
testcase_01 | AC | 155 ms
30,228 KB |
testcase_02 | AC | 139 ms
30,152 KB |
testcase_03 | AC | 140 ms
30,136 KB |
testcase_04 | AC | 139 ms
30,160 KB |
testcase_05 | AC | 139 ms
30,184 KB |
testcase_06 | AC | 143 ms
30,224 KB |
testcase_07 | AC | 141 ms
30,256 KB |
testcase_08 | AC | 144 ms
30,212 KB |
testcase_09 | AC | 143 ms
30,160 KB |
testcase_10 | AC | 159 ms
30,280 KB |
testcase_11 | AC | 171 ms
30,180 KB |
testcase_12 | WA | - |
testcase_13 | AC | 199 ms
31,344 KB |
testcase_14 | WA | - |
testcase_15 | AC | 163 ms
30,548 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; auto chmax = [](auto&& l, auto r) { return l < r ? l = r, 1 : 0; }; constexpr int lim = 3e5, th = 512; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; vector<int> a(n); for_each(begin(a), end(a), [](int& e) { cin >> e; }); reverse(begin(a), end(a)); vector<vector<int>> ds(lim + 1); for (int d = 1; d < th; ++d) { for (int i = 2 * d; i <= lim; i += d) { ds[i].push_back(d); } } vector<int> dp(lim + 1), m(th); for (int e : a) { int mx = -1; if (e < th) { mx = m[e]; } else { for (int i = 2 * e; i <= lim; i += e) { chmax(mx, dp[i]); } } chmax(dp[e], mx + 1); for (int d : ds[e]) { chmax(m[d], dp[e]); } } cout << *max_element(begin(dp), end(dp)) << '\n'; }