結果
問題 | No.209 Longest Mountain Subsequence |
ユーザー | mamekin |
提出日時 | 2015-07-22 23:27:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 73 ms / 2,000 ms |
コード長 | 1,573 bytes |
コンパイル時間 | 754 ms |
コンパイル使用メモリ | 97,460 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-08 12:09:11 |
合計ジャッジ時間 | 1,543 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
6,812 KB |
testcase_01 | AC | 24 ms
6,944 KB |
testcase_02 | AC | 20 ms
6,944 KB |
testcase_03 | AC | 72 ms
6,944 KB |
testcase_04 | AC | 73 ms
6,940 KB |
testcase_05 | AC | 13 ms
6,940 KB |
ソースコード
#include <cstdio> #include <iostream> #include <sstream> #include <fstream> #include <iomanip> #include <algorithm> #include <cmath> #include <string> #include <vector> #include <list> #include <queue> #include <stack> #include <set> #include <map> #include <bitset> #include <numeric> #include <limits> #include <climits> #include <cfloat> #include <functional> using namespace std; int main() { int t; cin >> t; while(--t >= 0){ int n; cin >> n; vector<int> a(n); for(int i=0; i<n; ++i) cin >> a[i]; vector<vector<int> > dp(n, vector<int>(n, 0)); for(int i=0; i<n; ++i) dp[i][i] = 1; for(int i=0; i<n; ++i){ for(int j=i; j<n; ++j){ if(a[i] <= a[j]){ for(int k=j+1; k<n; ++k){ if(a[j] - a[i] < a[k] - a[j]) dp[j][k] = max(dp[j][k], dp[i][j] + 1); else if(a[k] < a[j]) dp[j][k] = max(dp[j][k], dp[i][j] + 1); } } else{ for(int k=j+1; k<n; ++k){ if(a[j] > a[k] && a[i] - a[j] > a[j] - a[k]) dp[j][k] = max(dp[j][k], dp[i][j] + 1); } } } } int ans = 0; for(int i=0; i<n; ++i){ for(int j=i; j<n; ++j){ ans = max(ans, dp[i][j]); } } cout << ans << endl; } return 0; }