結果

問題 No.1827 最長部分スーパーリッチ門松列列
ユーザー 👑 Nachia
提出日時 2022-01-28 21:26:07
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,020 bytes
コンパイル時間 890 ms
コンパイル使用メモリ 78,700 KB
最終ジャッジ日時 2025-01-27 16:06:39
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 16 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <set>
using namespace std;
using i64 = long long;
using u64 = unsigned long long;
using i32 = int;
using u32 = unsigned int;
#define rep(i,n) for(int i=0; i<(n); i++)


void testcase(){
    int N; cin >> N;
    vector<int> iP(N);
    rep(i,N){ int p; cin >> p; p--; iP[p] = i; }

    vector<int> flag(N+2, 0);
    int nowans = 0;
    int ans = 0;
    rep(i,N){
        int p = iP[i];
        if(flag[p] != flag[p+1]) nowans--;
        if(flag[p+2] != flag[p+1]) nowans--;
        flag[p+1] ^= 1;
        if(flag[p] != flag[p+1]) nowans++;
        if(flag[p+2] != flag[p+1]) nowans++;
        int newans2 = nowans;
        if(flag[N] == 1) newans2--;
        ans = max(ans, newans2);
    }
    cout << ans << "\n";
}


int main() {
    int T; cin >> T;
    while(T--) testcase();
    return 0;
}



struct ios_do_not_sync{
    ios_do_not_sync(){
        std::ios::sync_with_stdio(false);
        std::cin.tie(nullptr);
    }
} ios_do_not_sync_instance;
0