結果
問題 | No.390 最長の数列 |
ユーザー | Ai3Shota |
提出日時 | 2018-05-11 02:25:37 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 750 bytes |
コンパイル時間 | 1,304 ms |
コンパイル使用メモリ | 162,640 KB |
実行使用メモリ | 10,656 KB |
最終ジャッジ日時 | 2024-06-28 03:33:22 |
合計ジャッジ時間 | 8,719 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
#include <bits/stdc++.h> #define MOD 1000000007 using namespace std; int N; vector<int> numset; int dp[1000001] = {0}; int rec(int perv = 0, int count = 0){ if(count == N) return count; if(dp[perv] != 0 && dp[perv] >= count) return dp[perv]; int i, j; for(i = 0; i < N; ++i){ if(perv == 0 || (numset[i] != perv && numset[i] % perv == 0)) dp[perv] = ((j = rec(numset[i], count + 1)) > dp[perv]) ? j : dp[perv]; } return dp[perv] = (count > dp[perv]) ? count : dp[perv]; } int main(void){ cin >> N; int i, j; for(i = 0; i < N; ++i){ cin >> j; numset.push_back(j); } sort(numset.begin(), numset.end()); cout << rec() << endl; return 0; }