結果
問題 | No.390 最長の数列 |
ユーザー | ser |
提出日時 | 2018-01-02 18:38:43 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 817 bytes |
コンパイル時間 | 732 ms |
コンパイル使用メモリ | 76,784 KB |
最終ジャッジ日時 | 2025-01-05 06:55:38 |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,532 KB |
testcase_01 | AC | 1 ms
10,916 KB |
testcase_02 | AC | 2 ms
11,040 KB |
testcase_03 | AC | 2 ms
10,916 KB |
testcase_04 | WA | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | AC | 2 ms
13,764 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 35 ms
6,820 KB |
testcase_18 | AC | 92 ms
10,916 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:30:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 30 | scanf("%d", &n); | ~~~~~^~~~~~~~~~ main.cpp:34:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 34 | scanf("%d", &nums[i]); | ~~~~~^~~~~~~~~~~~~~~~
ソースコード
#include <cstdio> #include <iostream> #include <algorithm> #include <string> #include <queue> #include <stack> #include <vector> #include <climits> #include <tuple> using namespace std; int n; int nums[100000]; int dp[100000]; int f(int index, int cnt) { if (dp[index]==0) { dp[index] = cnt; for (int i=index+1; i<n; ++i) { if (nums[i]%nums[index]==0) { dp[index] = max(dp[index], f(i, cnt+1)); } } } return dp[index]; } int main() { scanf("%d", &n); getchar(); for(int i=0; i<n; i++) { scanf("%d", &nums[i]); } std::sort(nums, &nums[n], std::less<int>()); int max_cnt=0; for(int i=0; i<n; i++) { max_cnt=max(max_cnt, f(i, 1)); } printf("%d\n", max_cnt); return 0; }