結果

問題 No.127 門松もどき
ユーザー kimiyukikimiyuki
提出日時 2016-02-27 07:24:34
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 202 ms / 5,000 ms
コード長 995 bytes
コンパイル時間 585 ms
コンパイル使用メモリ 64,852 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-06-06 08:38:04
合計ジャッジ時間 3,724 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 190 ms
108,928 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 14 ms
11,648 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 107 ms
58,880 KB
testcase_13 AC 144 ms
77,824 KB
testcase_14 AC 130 ms
71,424 KB
testcase_15 AC 178 ms
97,920 KB
testcase_16 AC 127 ms
69,120 KB
testcase_17 AC 141 ms
79,744 KB
testcase_18 AC 120 ms
66,560 KB
testcase_19 AC 71 ms
41,856 KB
testcase_20 AC 71 ms
43,136 KB
testcase_21 AC 32 ms
21,376 KB
testcase_22 AC 202 ms
108,928 KB
testcase_23 AC 201 ms
109,056 KB
testcase_24 AC 144 ms
84,224 KB
testcase_25 AC 170 ms
99,200 KB
testcase_26 AC 85 ms
50,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#define repeat(i,n) for (int i = 0; (i) < (n); ++(i))
template <typename T> bool setmax(T & l, T const & r) { if (not (l < r)) return false; l = r; return true; }
using namespace std;
int main() {
    int n; cin >> n;
    vector<int> a(n); repeat (i,n) cin >> a[i];
    vector<vector<vector<int> > > dp(2, vector<vector<int> >(n, vector<int>(n)));
    repeat (len,n+1) {
        repeat (l,n) {
            int r = l + len;
            if (n <= r) continue;
            if (l == r) {
                dp[0][l][r] = 1;
                dp[1][l][r] = 1;
            } else {
                dp[0][l][r] = dp[0][l][r-1];
                dp[1][l][r] = dp[1][l+1][r];
                if (a[l] < a[r]) setmax(dp[0][l][r], dp[1][l+1][r] + 1);
                if (a[l] > a[r]) setmax(dp[1][l][r], dp[0][l][r-1] + 1);
            }
        }
    }
    int ans = 0;
    repeat (j,n) setmax(ans, max(dp[0][j][n-1], dp[1][0][j]));
    cout << ans << endl;
    return 0;
}
0