結果
問題 | No.390 最長の数列 |
ユーザー | oxyshower |
提出日時 | 2019-03-03 00:35:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 514 bytes |
コンパイル時間 | 1,666 ms |
コンパイル使用メモリ | 173,508 KB |
実行使用メモリ | 11,776 KB |
最終ジャッジ日時 | 2024-06-23 13:05:31 |
合計ジャッジ時間 | 3,199 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 7 ms
10,880 KB |
testcase_04 | WA | - |
testcase_05 | AC | 23 ms
11,776 KB |
testcase_06 | WA | - |
testcase_07 | AC | 7 ms
10,880 KB |
testcase_08 | AC | 5 ms
10,880 KB |
testcase_09 | AC | 6 ms
11,008 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 24 ms
11,520 KB |
testcase_14 | WA | - |
testcase_15 | AC | 5 ms
10,880 KB |
testcase_16 | AC | 5 ms
10,960 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define int long long signed 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(x.rbegin(),x.rend()); vector<int> dp(1000000+1,0); for(int i : x){ dp[i] = max(dp[i],1LL); for(int j = i*2; j <= 1000000; j+=i){ dp[j] = max(dp[j],dp[i]+1); } } int ans = 0; for(int i : x){ ans = max(ans,dp[i]); } cout << ans << endl; return 0; }