結果
問題 | No.979 Longest Divisor Sequence |
ユーザー | ngtkana |
提出日時 | 2019-10-06 21:42:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 501 ms / 2,000 ms |
コード長 | 891 bytes |
コンパイル時間 | 2,355 ms |
コンパイル使用メモリ | 205,672 KB |
実行使用メモリ | 38,120 KB |
最終ジャッジ日時 | 2024-10-11 06:21:02 |
合計ジャッジ時間 | 5,017 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 3 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 407 ms
36,952 KB |
testcase_11 | AC | 406 ms
36,952 KB |
testcase_12 | AC | 407 ms
36,904 KB |
testcase_13 | AC | 21 ms
6,816 KB |
testcase_14 | AC | 501 ms
38,120 KB |
testcase_15 | AC | 434 ms
37,340 KB |
ソースコード
#include <bits/stdc++.h> #define all(v) v.begin(), v.end() auto cmx = [](auto& a, auto b){if (a < b) {a = b; return true;} return false;}; auto divisors(int n) { auto ret = std::vector< std::vector< int > >(n); for (auto i = 1; i < n; i++) { for (auto j = i; j < n; j += i) { ret.at(j).emplace_back(i); } } return ret; } int main() { std::cin.tie(0); std::cin.sync_with_stdio(false); int n; std::cin >> n; std::vector< int > a(n); for (auto & x : a) std::cin >> x; auto max = *std::max_element(all(a)); auto divs = divisors(max + 1); std::vector< int > lds(max + 1, 0); for (auto x : a) { if (x == 1) { cmx(lds.at(x), 1); continue; } for (auto y : divs.at(x)) { if (x == y) continue; cmx(lds.at(x), lds.at(y) + 1); } } auto ret = *std::max_element(all(lds)); std::cout << ret << std::endl; return 0; }