結果
問題 | No.209 Longest Mountain Subsequence |
ユーザー | nebukuro09 |
提出日時 | 2017-05-30 18:56:00 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,481 bytes |
コンパイル時間 | 991 ms |
コンパイル使用メモリ | 120,420 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-12 19:32:10 |
合計ジャッジ時間 | 1,224 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 3 ms
6,940 KB |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop; void solve() { auto N = readln.chomp.to!int; auto H = readln.split.map!(to!int).array; auto dp_left = new Tuple!(int, int)[](N); foreach (i; 0..N) { dp_left[i] = tuple(1, 0); foreach (j; 0..i) { if (H[i] - H[j] <= dp_left[j][1]) continue; if (dp_left[i][0] < dp_left[j][0] + 1) dp_left[i] = tuple(dp_left[j][0] + 1, H[i] - H[j]); else if (dp_left[i][0] == dp_left[j][0] + 1) dp_left[i] = tuple(dp_left[j][0] + 1, min(H[i] - H[j], dp_left[i][1])); } } auto dp_right = new Tuple!(int, int)[](N); foreach (i; iota(N-1, -1, -1)) { dp_right[i] = tuple(1, 0); for (int j = N - 1; j > i; j--) { if (H[i] - H[j] <= dp_right[j][1]) continue; if (dp_right[i][0] < dp_right[j][0] + 1) dp_right[i] = tuple(dp_right[j][0] + 1, H[i] - H[j]); else if (dp_right[i][0] == dp_right[j][0] + 1) dp_right[i] = tuple(dp_right[j][0] + 1, min(H[i] - H[j], dp_right[i][1])); } } int ans = 0; foreach (i; 0..N) ans = max(ans, dp_left[i][0] + dp_right[i][0] - 1); ans.writeln; } void main() { auto T = readln.chomp.to!int; while (T--) solve; }