結果
問題 | No.390 最長の数列 |
ユーザー | kurenai3110 |
提出日時 | 2016-08-19 07:57:06 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 498 bytes |
コンパイル時間 | 630 ms |
コンパイル使用メモリ | 65,148 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 19:42:22 |
合計ジャッジ時間 | 1,570 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 4 ms
5,248 KB |
testcase_02 | AC | 4 ms
5,248 KB |
testcase_03 | AC | 4 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 29 ms
5,248 KB |
testcase_14 | WA | - |
testcase_15 | AC | 3 ms
5,248 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; #define rep(i,n) for(int i=0;i<n;i++) int DP[1000001]; int main() { int n; cin >> n; vector<int> x; x.resize(n); rep(i, n) { cin >> x[i]; } sort(x.begin(), x.end()); rep(i, n) { int resource = DP[x[i]]; for (int j = 2*x[i]; j < 100001;j+=x[i]) { DP[j] = max(DP[j],resource+1); } } int mx = 0; for (int i = 0; i < 1000001; i++) { mx = max(mx, DP[i]); } cout << mx << endl; return 0; }