結果

問題 No.127 門松もどき
ユーザー parukiparuki
提出日時 2016-09-14 20:14:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,242 bytes
コンパイル時間 1,554 ms
コンパイル使用メモリ 167,260 KB
実行使用メモリ 49,748 KB
最終ジャッジ日時 2024-11-17 05:57:39
合計ジャッジ時間 3,857 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,248 KB
testcase_06 WA -
testcase_07 AC 3 ms
5,248 KB
testcase_08 WA -
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 62 ms
30,720 KB
testcase_13 AC 82 ms
38,528 KB
testcase_14 AC 76 ms
35,840 KB
testcase_15 AC 105 ms
45,952 KB
testcase_16 AC 72 ms
34,944 KB
testcase_17 AC 83 ms
39,296 KB
testcase_18 AC 69 ms
33,920 KB
testcase_19 AC 42 ms
23,552 KB
testcase_20 AC 42 ms
24,192 KB
testcase_21 AC 21 ms
14,464 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