結果
問題 | No.209 Longest Mountain Subsequence |
ユーザー | codershifth |
提出日時 | 2016-01-16 16:38:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 101 ms / 2,000 ms |
コード長 | 2,019 bytes |
コンパイル時間 | 1,184 ms |
コンパイル使用メモリ | 162,412 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-19 20:00:12 |
合計ジャッジ時間 | 1,904 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
5,248 KB |
testcase_01 | AC | 30 ms
5,376 KB |
testcase_02 | AC | 28 ms
5,376 KB |
testcase_03 | AC | 101 ms
5,376 KB |
testcase_04 | AC | 101 ms
5,376 KB |
testcase_05 | AC | 15 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> typedef long long ll; typedef unsigned long long ull; #define FOR(i,a,b) for(int (i)=(a);i<(b);i++) #define REP(i,n) FOR(i,0,n) #define RANGE(vec) (vec).begin(),(vec).end() using namespace std; int dpL[101][101]; int dpR[101][101]; void solve(void) { int T; cin>>T; // O(N^3*T) REP(i,T) { int N; cin>>N; vector<ll> A(N); REP(i,N) cin>>A[i]; REP(i,N) dpL[i][i] = dpR[i][i] = 1; REP(i,N) FOR(j,i+1,N) { if (A[i] < A[j]) dpL[i][j] = 2; else dpL[i][j] = 0; if (A[i] > A[j]) dpR[i][j] = 2; else dpR[i][j] = 0; } REP(i,N) FOR(j,i+1,N) FOR(k,j+1,N) { if ( A[i] < A[j] && A[j] < A[k] && abs(A[i]-A[j]) < abs(A[j]-A[k]) ) dpL[j][k] = max(dpL[j][k], dpL[i][j]+1); } // 単調減少の方は逆順のループ for (int k = N-1; k >= 0; --k) for (int j = k-1; j >= 0; --j) for (int i = j-1; i >= 0; --i) { if ( A[i] > A[j] && A[j] > A[k] && abs(A[i]-A[j]) > abs(A[j]-A[k]) ) dpR[i][j] = max(dpR[i][j], dpR[j][k]+1); } int cnt = 1; // 単調増加・単調現象あわせたもの REP(i,N) REP(j,i) FOR(k,i+1,N) { // A[i] は二重にカウントされているので -1 cnt = max(cnt, dpL[j][i] + dpR[i][k] - 1); } // 単調部分のみ REP(i,N) FOR(j,i+1,N) cnt = max({cnt, dpL[i][j], dpR[i][j]}); cout<<cnt<<endl; } } #if 1 int main(int argc, char *argv[]) { solve(); return 0; } #endif