結果

問題 No.1827 最長部分スーパーリッチ門松列列
ユーザー ぷらぷら
提出日時 2022-01-28 22:50:18
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 971 bytes
コンパイル時間 1,898 ms
コンパイル使用メモリ 194,804 KB
最終ジャッジ日時 2025-01-27 17:15:19
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

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) {
                    if(Q[i] == 1 || Q[i] == N) {
                        now--;
                    }
                    continue;
                }
                if(Q[i] == 1 || Q[i] == N) {
                    now++;
                }
                else {
                    now += 2;
                }
                ans = max(ans,now);
            }
            else {
                now -= 2;
            }
        }
        cout << ans << endl;
    }
}
0