結果

問題 No.390 最長の数列
ユーザー ldsybldsyb
提出日時 2016-07-08 22:58:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 349 bytes
コンパイル時間 646 ms
コンパイル使用メモリ 69,364 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-13 06:22:09
合計ジャッジ時間 25,007 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 2 ms
5,248 KB
testcase_04 WA -
testcase_05 AC 3,557 ms
5,248 KB
testcase_06 AC 3,560 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 2,217 ms
5,248 KB
testcase_14 AC 3,549 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:14:39: warning: '*dp.5_36 + _10' may be used uninitialized [-Wmaybe-uninitialized]
   14 |         cout << *max_element(dp,dp + n) << endl;
      |                                       ^

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;

int main(){
	int ans = 0,n;
	cin >> n;
	int x[n];
	for(int i = 0;i < n;i++) cin >> x[i];
	sort(x,x + n);
	int dp[n];
	fill(dp,dp + n,1);
	for(int i = 0;i < n;i++) for(int j = i + 1;j < n;j++) if(2 * x[i] == x[j]) dp[j] = max(dp[j],dp[i] + 1);
	cout << *max_element(dp,dp + n) << endl;
}
0