結果
問題 | No.209 Longest Mountain Subsequence |
ユーザー | ctyl_0 |
提出日時 | 2016-02-23 22:50:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 87 ms / 2,000 ms |
コード長 | 1,855 bytes |
コンパイル時間 | 762 ms |
コンパイル使用メモリ | 91,948 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 13:14:23 |
合計ジャッジ時間 | 1,497 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
6,812 KB |
testcase_01 | AC | 26 ms
6,944 KB |
testcase_02 | AC | 24 ms
6,944 KB |
testcase_03 | AC | 87 ms
6,940 KB |
testcase_04 | AC | 87 ms
6,944 KB |
testcase_05 | AC | 14 ms
6,944 KB |
ソースコード
#include <iostream> #include <iomanip> #include <vector> #include <algorithm> #include <numeric> #include <functional> #include <cmath> #include <queue> #include <stack> #include <set> #include <map> #include <sstream> #include <string> #define repd(i,a,b) for (int i=(int)(a);i<(int)(b);i++) #define rep(i,n) repd(i,0,n) #define all(x) (x).begin(),(x).end() #define mod 1000000007 #define inf 2000000007 #define mp make_pair #define pb push_back typedef long long ll; using namespace std; template <typename T> inline void output(T a, int p) { if(p) cout << fixed << setprecision(p) << a << "\n"; else cout << a << "\n"; } // end of template void calc(vector<int> &X, vector<vector<int>> &dp){ repd(i, 1, X.size()){ rep(j, i){ if (X[i] > X[j]) { dp[i][j]++; } rep(k, j){ if (X[j] > X[k] && X[j] - X[k] < X[i] - X[j]) { dp[i][j] = max(dp[i][j], dp[j][k] + 1); } } } } } int main() { cin.tie(0); ios::sync_with_stdio(0); // source code int Q; cin >> Q; rep(q, Q){ int N; cin >> N; vector<int> A(N); vector<vector<int>> L(N, vector<int>(N, 1)); auto R = L;// 前選んだ数字の位置 rep(i, N){ cin >> A[i]; } vector<int> LM(N, 0), RM(N, 0); calc(A, L); rep(i, N){ rep(j, N){ LM[i] = max(LM[i], L[i][j]); } } reverse(all(A)); calc(A, R); rep(i, N){ rep(j, N){ RM[i] = max(RM[i], R[i][j]); } } int ret = 0; rep(i, N){ ret = max(ret, LM[i] + RM[N - i - 1] - 1); } output(ret, 0); } return 0; }