結果

問題 No.127 門松もどき
ユーザー aa
提出日時 2015-01-14 12:05:51
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 1,374 bytes
コンパイル時間 896 ms
コンパイル使用メモリ 69,664 KB
実行使用メモリ 73,984 KB
最終ジャッジ日時 2024-12-23 21:53:14
合計ジャッジ時間 3,474 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 160 ms
73,984 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 8 ms
8,960 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 77 ms
40,576 KB
testcase_13 AC 111 ms
53,248 KB
testcase_14 AC 101 ms
48,896 KB
testcase_15 AC 140 ms
66,688 KB
testcase_16 AC 92 ms
47,360 KB
testcase_17 AC 114 ms
54,528 KB
testcase_18 AC 88 ms
45,440 KB
testcase_19 AC 50 ms
29,056 KB
testcase_20 AC 50 ms
30,080 KB
testcase_21 AC 23 ms
15,488 KB
testcase_22 AC 154 ms
73,984 KB
testcase_23 AC 160 ms
73,984 KB
testcase_24 AC 117 ms
57,344 KB
testcase_25 AC 142 ms
67,456 KB
testcase_26 AC 65 ms
34,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

void show(vector< vector<int> > &);


int main() {
	vector< vector<int> > dpL, dpR;
	vector<int> a;
	int n;

	cin >> n;
	a.assign(n, 0);

	int input;
	for (int i = 0; i < n; i++) {
		cin >> input;
		a[i] = input;
	}

	dpL.assign(n, vector<int>(n, 0));
	dpR = dpL;

	for (int i = 0; i < n; i++) {
		dpR[i][i] = 1;
		dpL[i][i] = 1;
	}

	for (int diff = 1; diff < n; diff++) {
		for (int left = 0; left < n; left++) {
			int right = left + diff;
			if (right >= n) {
				break;
			}

			if (a[left] >= a[right]) {
				dpL[left][right] = dpL[left][right - 1];
			} else {
				dpL[left][right] = max(dpL[left][right - 1], dpR[left + 1][right] + 1);
			}

			if (a[right] >= a[left]) {
				 dpR[left][right] = dpR[left + 1][right];
			} else {
				 dpR[left][right] = max(dpR[left + 1][right], dpL[left][right - 1] + 1);
			}
		}
	} 

	int ans = 0;
	for (int i = 0; i < n; i++) {
		ans = max(ans, dpL[i][n - 1]);
		ans = max(ans, dpR[0][n - 1 - i]);
	}

	cout << ans << endl;

	// cout << endl << endl << "dpL" << endl;;
	// show(dpL);
	// cout << endl << "dpR" << endl;
	// show(dpR);

	return 0;
}

void show(vector< vector<int> > &vec2) {
	int n = vec2.size();
	for (int i = 0; i < n; i++) {
		for (int j = 0; j < n; j++) {
			printf("%2d ", vec2[i][j]);
		}
		cout << endl;
	}
	cout << endl;
}
0