結果

問題 No.209 Longest Mountain Subsequence
ユーザー furafura
提出日時 2020-02-09 00:43:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 770 bytes
コンパイル時間 1,809 ms
コンパイル使用メモリ 201,860 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-01 05:37:22
合計ジャッジ時間 2,548 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
6,816 KB
testcase_01 AC 16 ms
6,816 KB
testcase_02 AC 14 ms
6,816 KB
testcase_03 AC 46 ms
6,816 KB
testcase_04 AC 46 ms
6,820 KB
testcase_05 AC 6 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

const int INF=1<<29;

void solve(){
	int n,a[100]; scanf("%d",&n);
	rep(i,n) scanf("%d",&a[i]);

	int dp[2][100][100];
	rep(t,2){
		rep(i,n) rep(j,n) dp[t][i][j]=-INF;

		rep(i,n) dp[t][i][i]=1;
		for(int i=1;i<n;i++) rep(j,i) if(a[j]<a[i]) dp[t][j][i]=2;
		for(int i=2;i<n;i++){
			rep(j,i) if(a[j]<a[i]) rep(k,j) if(a[k]<a[j] && a[j]-a[k]<a[i]-a[j]) {
				dp[t][j][i]=max(dp[t][j][i],dp[t][k][j]+1);
			}
		}
		reverse(a,a+n);
	}

	int ans=0;
	rep(i,n){
		int tmp0=0,tmp1=0;
		rep(j,n){
			tmp0=max(tmp0,dp[0][j][i]);
			tmp1=max(tmp1,dp[1][j][n-i-1]);
		}
		ans=max(ans,tmp0+tmp1-1);
	}
	printf("%d\n",ans);
}

int main(){
	int q; scanf("%d",&q); rep(_,q) solve();
	return 0;
}
0