結果
問題 | No.390 最長の数列 |
ユーザー | rodea |
提出日時 | 2021-01-11 17:21:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,070 ms / 5,000 ms |
コード長 | 1,653 bytes |
コンパイル時間 | 1,498 ms |
コンパイル使用メモリ | 119,660 KB |
実行使用メモリ | 7,680 KB |
最終ジャッジ日時 | 2024-11-21 09:17:24 |
合計ジャッジ時間 | 7,413 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
7,104 KB |
testcase_01 | AC | 4 ms
7,140 KB |
testcase_02 | AC | 5 ms
7,176 KB |
testcase_03 | AC | 5 ms
7,040 KB |
testcase_04 | AC | 4 ms
7,168 KB |
testcase_05 | AC | 1,070 ms
7,424 KB |
testcase_06 | AC | 686 ms
7,552 KB |
testcase_07 | AC | 4 ms
7,168 KB |
testcase_08 | AC | 4 ms
7,108 KB |
testcase_09 | AC | 4 ms
7,136 KB |
testcase_10 | AC | 753 ms
7,516 KB |
testcase_11 | AC | 750 ms
7,536 KB |
testcase_12 | AC | 750 ms
7,680 KB |
testcase_13 | AC | 543 ms
7,424 KB |
testcase_14 | AC | 271 ms
7,552 KB |
testcase_15 | AC | 5 ms
7,168 KB |
testcase_16 | AC | 6 ms
7,168 KB |
testcase_17 | AC | 39 ms
7,168 KB |
testcase_18 | AC | 61 ms
7,168 KB |
ソースコード
#pragma GCC optimize("O3") #include <iostream> #include <iomanip> #include <cstdio> #include <string> #include <cstring> #include <deque> #include <list> #include <queue> #include <stack> #include <vector> #include <utility> #include <algorithm> #include <map> #include <set> #include <complex> #include <cmath> #include <limits> #include <cfloat> #include <climits> #include <ctime> #include <cassert> #include <numeric> #include <fstream> #include <functional> #include <bitset> using namespace std; using ll = long long; using P = pair<int, int>; using T = tuple<int, int, int>; template <class T> inline T chmax(T &a, const T b) {return a = (a < b) ? b : a;} template <class T> inline T chmin(T &a, const T b) {return a = (a > b) ? b : a;} constexpr int MOD = 1e9 + 7; constexpr int inf = 1e9; constexpr long long INF = 1e18; #define all(a) (a).begin(), (a).end() int dx[] = {1, 0, -1, 0}; int dy[] = {0, 1, 0, -1}; vector<ll> divisor(ll n){ vector<ll> v; for(ll i=1; i*i<=n; i++){ if(n % i == 0){ v.emplace_back(i); v.emplace_back(n / i); } } sort(v.begin(), v.end()); v.erase(unique(v.begin(), v.end()), v.end()); return v; } int main(){ cin.tie(0); ios::sync_with_stdio(false); int n; cin>>n; vector<int> x(n); for(int i=0; i<n; i++) cin>>x[i]; sort(all(x)); vector<int> dp(1000010, 0); dp[1] = 0; for(int i=0; i<n; i++){ auto div = divisor(x[i]); int ma = 0; for(auto j:div){ chmax(ma, dp[j]); } dp[x[i]] = ma + 1; } cout << *max_element(all(dp)) << endl; return 0; }