結果

問題 No.127 門松もどき
ユーザー omochana1omochana1
提出日時 2015-01-19 12:02:53
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 1,564 bytes
コンパイル時間 746 ms
コンパイル使用メモリ 84,044 KB
実行使用メモリ 74,640 KB
最終ジャッジ日時 2024-06-06 08:25:33
合計ジャッジ時間 3,182 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
74,332 KB
testcase_01 AC 20 ms
74,340 KB
testcase_02 AC 20 ms
74,276 KB
testcase_03 AC 21 ms
74,196 KB
testcase_04 AC 118 ms
74,580 KB
testcase_05 AC 20 ms
74,384 KB
testcase_06 AC 29 ms
74,388 KB
testcase_07 AC 20 ms
74,440 KB
testcase_08 AC 22 ms
74,228 KB
testcase_09 AC 21 ms
74,320 KB
testcase_10 AC 20 ms
74,200 KB
testcase_11 AC 21 ms
74,340 KB
testcase_12 AC 68 ms
74,640 KB
testcase_13 AC 86 ms
74,548 KB
testcase_14 AC 81 ms
74,516 KB
testcase_15 AC 103 ms
74,428 KB
testcase_16 AC 77 ms
74,484 KB
testcase_17 AC 82 ms
74,604 KB
testcase_18 AC 72 ms
74,572 KB
testcase_19 AC 51 ms
74,628 KB
testcase_20 AC 51 ms
74,420 KB
testcase_21 AC 34 ms
74,408 KB
testcase_22 AC 114 ms
74,616 KB
testcase_23 AC 106 ms
74,600 KB
testcase_24 AC 93 ms
74,580 KB
testcase_25 AC 107 ms
74,484 KB
testcase_26 AC 63 ms
74,384 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:65:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   65 |         scanf("%d", &N);
      |         ~~~~~^~~~~~~~~~
main.cpp:66:27: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   66 |         REP(i, 0, N) scanf("%d", &A[i + 1]);
      |                      ~~~~~^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <cmath>
#include <cstdio>
#include <algorithm>
#include <string>
#include <vector>
#include <queue>
#include <string.h>
#include <map>
#include <fstream>
#include <functional>
#include <bitset>
#include <stack>
#include <set>
#include <climits>
#define MAX_N 3010
#define LOG 21
#define PI 3.141592653589
#define EPS 1e-6
#define MOD 1000000007
#define YJSNPI 810
#define INF (1 << 30)
#define ADD(a, b) a = (a + (ll)b) % MOD
#define MUL(a, b) a = (a * (ll)b) % MOD
#define MAX(a, b) a = max(a, b)
#define MIN(a, b) a = min(a, b)
#define REP(i, a, b) for(int i = a; i < b; i++)
#define RER(i, a, b) for(int i = a - 1; i >= b; i--)

using namespace std;

typedef long long ll;
typedef pair<ll, int> pi;

void debug() {cout << endl; }

template<class FIRST, class... REST>
void debug(FIRST arg, REST... rest) { cout << arg << " "; debug(rest...); }

template<class T>
void showary(T begin, T end) { 
	while(begin != end) { cout << *begin << " "; begin++; } cout << endl; }

int N;
int A[MAX_N];
int dp[MAX_N][MAX_N][2];

int loop(int l, int r, int k) {
	if(dp[l][r][k] != -1) return dp[l][r][k];
	if(l == r) return 0;
	int res = 0;
	if(k == 0) {
		MAX(res, loop(l, r - 1, 0));
		if(A[l] < A[r]) MAX(res, loop(l + 1, r, 1) + 1);
	}
	else {
		MAX(res, loop(l + 1, r, 1));
		if(A[l] > A[r]) MAX(res, loop(l, r - 1, 0) + 1);
	}
	//debug(l, r, k, res);
	return dp[l][r][k] = res;
}

int main() {
	scanf("%d", &N);
	REP(i, 0, N) scanf("%d", &A[i + 1]);
	memset(dp, -1, sizeof(dp));
	printf("%d\n", max(loop(0, N + 1, 0), loop(0, N + 1, 1)));
}
0