結果
問題 | No.390 最長の数列 |
ユーザー | rodea |
提出日時 | 2017-12-22 15:48:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 832 bytes |
コンパイル時間 | 985 ms |
コンパイル使用メモリ | 78,176 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-10 02:54:12 |
合計ジャッジ時間 | 5,964 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:43:23: warning: iteration 99999 invokes undefined behavior [-Waggressive-loop-optimizations] 43 | dp[i] = 0; | ~~~~~~^~~ main.cpp:41:23: note: within this loop 41 | for (i = 1; i <= 100000; i++) | ~~^~~~~~~~~ main.cpp:43:23: warning: 'void* __builtin_memset(void*, int, long unsigned int)' writing 400000 bytes into a region of size 399996 overflows the destination [-Wstringop-overflow=] 43 | dp[i] = 0; | ~~~~~~^~~ main.cpp:30:30: note: at offset 4 into destination object 'dp' of size 400000 30 | int n, i, x[100000], dp[100000]; | ^~
ソースコード
#include<iostream> #include<algorithm> #include<vector> using namespace std; vector<long long> divisor(long long n) { vector<long long> s; for (long long i = 1; i*i<= n; i++) { if (n%i == 0) { s.push_back(i); if (i*i != n) { s.push_back(n / i); } } } sort(s.begin(), s.end()); return s; } int main() { int n, i, x[100000], dp[100000]; cin >> n; for (i = 1; i <= n; i++) { cin >> x[i]; } sort(x + 1, x + n + 1); for (i = 1; i <= 100000; i++) { dp[i] = 0; } for (i = 1; i <= n; i++) { dp[x[i]] = 1; } for (i = 1; i <= 100000; i++) { if (dp[i]) { auto v = divisor(i); for (int j : v) { if(j != i) { dp[i] = max(dp[i], dp[j] + 1); } } } } int ans = 0; for (i = 1; i <= n; i++) { ans = max(ans, dp[x[i]]); } cout << ans << endl; }