結果

問題 No.127 門松もどき
ユーザー parukiparuki
提出日時 2016-09-14 20:18:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 107 ms / 5,000 ms
コード長 1,245 bytes
コンパイル時間 1,446 ms
コンパイル使用メモリ 168,604 KB
実行使用メモリ 49,792 KB
最終ジャッジ日時 2024-06-06 08:40:07
合計ジャッジ時間 3,379 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 69 ms
49,664 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 10 ms
9,600 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 55 ms
30,720 KB
testcase_13 AC 48 ms
38,528 KB
testcase_14 AC 68 ms
35,840 KB
testcase_15 AC 63 ms
45,952 KB
testcase_16 AC 67 ms
34,816 KB
testcase_17 AC 46 ms
39,168 KB
testcase_18 AC 61 ms
33,920 KB
testcase_19 AC 26 ms
23,680 KB
testcase_20 AC 39 ms
24,064 KB
testcase_21 AC 14 ms
14,464 KB
testcase_22 AC 69 ms
49,792 KB
testcase_23 AC 107 ms
49,536 KB
testcase_24 AC 54 ms
40,960 KB
testcase_25 AC 95 ms
46,208 KB
testcase_26 AC 34 ms
27,136 KB
権限があれば一括ダウンロードができます

ソースコード

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;

    int ans = 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), smax(ans, 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), smax(ans, val + 1);
                }
            }
        }
    }
    cout << ans << endl;
}
0