結果

問題 No.127 門松もどき
ユーザー なおなお
提出日時 2015-01-14 00:51:17
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 278 ms / 5,000 ms
コード長 1,083 bytes
コンパイル時間 1,154 ms
コンパイル使用メモリ 157,928 KB
実行使用メモリ 90,496 KB
最終ジャッジ日時 2024-06-06 08:13:47
合計ジャッジ時間 5,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
90,112 KB
testcase_01 AC 62 ms
90,304 KB
testcase_02 AC 63 ms
90,240 KB
testcase_03 AC 62 ms
90,240 KB
testcase_04 AC 278 ms
90,368 KB
testcase_05 AC 61 ms
90,112 KB
testcase_06 AC 74 ms
90,268 KB
testcase_07 AC 62 ms
90,240 KB
testcase_08 AC 61 ms
90,144 KB
testcase_09 AC 62 ms
90,240 KB
testcase_10 AC 60 ms
90,168 KB
testcase_11 AC 61 ms
90,240 KB
testcase_12 AC 151 ms
90,368 KB
testcase_13 AC 172 ms
90,228 KB
testcase_14 AC 174 ms
90,348 KB
testcase_15 AC 223 ms
90,308 KB
testcase_16 AC 153 ms
90,448 KB
testcase_17 AC 177 ms
90,288 KB
testcase_18 AC 149 ms
90,412 KB
testcase_19 AC 112 ms
90,316 KB
testcase_20 AC 114 ms
90,368 KB
testcase_21 AC 83 ms
90,184 KB
testcase_22 AC 271 ms
90,452 KB
testcase_23 AC 241 ms
90,328 KB
testcase_24 AC 203 ms
90,356 KB
testcase_25 AC 240 ms
90,496 KB
testcase_26 AC 135 ms
90,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> VI;
typedef vector<VI> VVI;
#define ITER(c)             __typeof__((c).begin())
#define FOREACH(it, c)      for (ITER(c) it=(c).begin(); it != (c).end(); ++it)
#define REP(i, n)           for(int(i)=0;(i)<(n);++(i))
#define RREP(i, n)          for(int(i)=(n)-1;(i)>=0;--(i))
const int MOD = (int)1e9+7;

int N,M,W,H;
int A[3333];

int dp[2][3333][3333];

int dfs(int i, int j, int k){
    if(j == k) return 1;

    if(dp[i][j][k] >= 0) return dp[i][j][k];
    int res = 0;
    if(i == 0){
        res = dfs(0,j,k-1);
        if(A[j] < A[k]){
            res = max(res, dfs(1,j+1,k)+1);
        }
    } else {
        res = dfs(1,j+1,k);
        if(A[j] > A[k]){
            res = max(res, dfs(0,j,k-1)+1);
        }
    }
    return dp[i][j][k] = res;
}

int main(){
    cin >> N;
    REP(i,N){
        cin >> A[i];
    }
    memset(dp, -1, sizeof(dp));

    int res = 0;
    REP(i,N){
        res = max(res, dfs(0,i,N-1));
        res = max(res, dfs(1,0,i));
    }

    cout << res << endl;

}
0