結果

問題 No.1188 レベルX門松列
ユーザー rogi52rogi52
提出日時 2022-10-04 01:31:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 1,032 bytes
コンパイル時間 2,027 ms
コンパイル使用メモリ 205,428 KB
実行使用メモリ 5,624 KB
最終ジャッジ日時 2024-06-08 18:21:29
合計ジャッジ時間 3,686 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
5,624 KB
testcase_01 AC 28 ms
5,376 KB
testcase_02 AC 25 ms
5,376 KB
testcase_03 AC 33 ms
5,492 KB
testcase_04 AC 28 ms
5,496 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 15 ms
5,496 KB
testcase_07 AC 29 ms
5,500 KB
testcase_08 AC 29 ms
5,496 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 21 ms
5,376 KB
testcase_15 AC 36 ms
5,480 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 29 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 26 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int N; cin >> N;
    vector<int> A(N);
    rep(i,N) cin >> A[i];

    auto f = [N](vector<int> A) {
        auto LIS = [N](vector<int> A) {
            int INF = numeric_limits<int>::max();
            vector<int> dp(N, INF), rank(N);
            rep(i,N) {
                int p = lower_bound(dp.begin(), dp.end(), A[i]) - dp.begin();
                dp[p] = A[i];
                rank[i] = p + 1;
            }
            return rank;
        };

        vector<int> L = LIS(A);
        reverse(A.begin(), A.end());
        vector<int> R = LIS(A);
        reverse(A.begin(), A.end());
        reverse(R.begin(), R.end());
        int ans = 0;
        rep(i,N) ans = max(ans, min(L[i], R[i]) - 1);
        return ans;
    };

    int ans = 0;
    rep(_,2) {
        ans = max(ans, f(A));
        rep(i,N) A[i] *= -1;
    }
    cout << ans << endl;
}
0