結果

問題 No.209 Longest Mountain Subsequence
ユーザー airisairis
提出日時 2015-05-16 17:36:34
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 1,922 bytes
コンパイル時間 598 ms
コンパイル使用メモリ 74,916 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-20 09:18:13
合計ジャッジ時間 1,474 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
4,380 KB
testcase_01 AC 33 ms
4,380 KB
testcase_02 AC 31 ms
4,376 KB
testcase_03 AC 106 ms
4,380 KB
testcase_04 AC 105 ms
4,376 KB
testcase_05 AC 14 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <numeric>
#include <bitset>
#define rep(x, to) for (int x = 0; x < (to); x++)
#define REP(x, a, to) for (int x = (a); x < (to); x++)
#define foreach(itr, x) for (typeof((x).begin()) itr = (x).begin(); itr != (x).end(); itr++)

using namespace std;

typedef long long ll;
typedef pair<int, int> PII;
typedef pair<long, long> PLL;

int N, T;
int a[105];

int dp[105][105];
int dp2[105][105];

int dfs(int i, int j, int tdp[105][105]) {
	if (tdp[i][j] != 0) return tdp[i][j];
	int res = 1;
	int k_not_exist = 1;
	for (int k = 0; k < j; k++) {
		if (a[j] < a[i] && a[k] < a[j] && a[i]-a[j] > a[j]-a[k]) {
			res = max(res, 1 + dfs(j, k, tdp));
			k_not_exist = 0;
		}
	}
	res += k_not_exist;
	return tdp[i][j] = res;
}

int main() {
	cin >> T;
	while (T--) {
		int ans = 1;
		memset(dp, 0, sizeof(dp));
		memset(dp2, 0, sizeof(dp2));
		cin >> N;
		rep(i, N) cin >> a[i];
		//up
		for (int i = 0; i < N; i++) {
			for (int j = 0; j < i; j++) {
				if (a[j] < a[i]) {
					dfs(i, j, dp);
				}
			}
		}
		//down
		reverse(a, a+N);
		for (int i = 0; i < N; i++) {
			for (int j = 0; j < i; j++) {
				if (a[j] < a[i]) dfs(i, j, dp2);
			}
		}
#if 0
		rep(i, 5) rep(j, 5) {
			printf("%d%c", dp[i][j], j == 5 - 1 ? '\n' : ' ');
		}
#endif
		for (int i = 0; i < N; i++) {
			for (int j = 0; j <= i; j++) {
				for (int k = 0; k < N-i-1; k++) {
					if (dp[i][j] + dp2[N-i-1][k] - (dp[i][j]>0&&dp2[N-i-1][k]>0) > ans) {
						//頂上のカウント重複のため-1
						ans = dp[i][j] + dp2[N-i-1][k]-(dp[i][j]>0&&dp2[N-i-1][k]>0);
						//printf("dp[%d][%d]+dp2[%d][%d]=%d+%d=%d\n", i,j,N-i-1,k,dp[i][j],dp2[N-i-1][k],dp[i][j]+dp2[N-i-1][k]);
					}
				}
			}
		}
		cout << ans << endl;
	}
	return 0;
}

0