結果

問題 No.1827 最長部分スーパーリッチ門松列列
ユーザー ぷらぷら
提出日時 2022-01-28 22:48:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 869 bytes
コンパイル時間 2,204 ms
コンパイル使用メモリ 203,028 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-06-09 16:16:05
合計ジャッジ時間 6,150 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
6,812 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 139 ms
9,088 KB
testcase_08 AC 143 ms
9,088 KB
testcase_09 AC 143 ms
9,088 KB
testcase_10 AC 143 ms
9,088 KB
testcase_11 AC 142 ms
9,088 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 142 ms
9,088 KB
testcase_15 AC 138 ms
9,088 KB
testcase_16 AC 143 ms
9,216 KB
testcase_17 AC 154 ms
9,088 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 141 ms
9,088 KB
testcase_22 AC 141 ms
9,216 KB
testcase_23 AC 141 ms
9,088 KB
testcase_24 AC 145 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int T;
    cin >> T;
    while (T--) {
        int N;
        cin >> N;
        vector<int>P(N),Q(N+1);
        for(int i = 0; i < N; i++) {
            cin >> P[i];
            Q[P[i]] = i+1;
        }
        vector<int>res(N+2);
        int ans = 1,now = 1;
        for(int i = 1; i <= N; i++) {
            res[Q[i]] = 1;
            if(res[Q[i]-1] == 0 || res[Q[i]+1] == 0) {
                if(res[Q[i]-1] == 1 || res[Q[i]+1] == 1) {
                    continue;
                }
                if(Q[i] == 1 || Q[i] == N) {
                    now++;
                }
                else {
                    now += 2;
                }
                ans = max(ans,now);
            }
            else {
                now -= 2;
            }
        }
        cout << ans << endl;
    }
}
0