結果

問題 No.127 門松もどき
ユーザー parukiparuki
提出日時 2016-09-14 20:14:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,242 bytes
コンパイル時間 1,507 ms
コンパイル使用メモリ 168,132 KB
実行使用メモリ 73,764 KB
最終ジャッジ日時 2024-04-28 13:43:21
合計ジャッジ時間 3,202 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,940 KB
testcase_06 WA -
testcase_07 AC 2 ms
6,940 KB
testcase_08 WA -
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 36 ms
54,740 KB
testcase_13 AC 45 ms
64,124 KB
testcase_14 AC 45 ms
60,376 KB
testcase_15 AC 55 ms
71,296 KB
testcase_16 AC 40 ms
59,744 KB
testcase_17 AC 40 ms
64,012 KB
testcase_18 AC 33 ms
58,344 KB
testcase_19 AC 24 ms
45,788 KB
testcase_20 AC 25 ms
47,724 KB
testcase_21 AC 13 ms
32,592 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))
#define rep(i,j) FOR(i,0,j)
#define each(x,y) for(auto &(x):(y))
#define mp make_pair
#define all(x) (x).begin(),(x).end()
#define debug(x) cout<<#x<<": "<<(x)<<endl
#define smax(x,y) (x)=max((x),(y))
#define smin(x,y) (x)=min((x),(y))
#define MEM(x,y) memset((x),(y),sizeof (x))
#define sz(x) (int)(x).size()
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<ll> vll;

int N, A[3001], dp[3001][3001][2];

int main(){
    cin >> N;
    rep(i, N)scanf("%d", &A[i]);
    rep(i, N)rep(j, 2)dp[i][i][j] = 1;

    rep(len, N){
        rep(l, N-len){
            int r = l + len;
            rep(lr, 2){
                int val = dp[l][r][lr];
                if(lr == 0 && l > 0){
                    smax(dp[l-1][r][lr], val);
                    if(A[r] > A[l - 1])smax(dp[l - 1][r][!lr], val+1);
                }
                if(lr == 1 && r < N-1){
                    smax(dp[l][r+1][lr], val);
                    if(A[l] > A[r + 1])smax(dp[l][r + 1][!lr], val+1);
                }
            }
        }
    }
    int ans = 0;
    rep(i, 2)smax(ans, dp[0][N - 1][i]);
    cout << ans << endl;
}
0