結果
| 問題 | 
                            No.1827 最長部分スーパーリッチ門松列列
                             | 
                    
| コンテスト | |
| ユーザー | 
                             Nachia
                         | 
                    
| 提出日時 | 2022-01-28 21:27:03 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 1,005 bytes | 
| コンパイル時間 | 648 ms | 
| コンパイル使用メモリ | 75,416 KB | 
| 最終ジャッジ日時 | 2025-01-27 16:07:15 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 1 | 
| other | AC * 2 WA * 22 | 
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
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 = 1;
    int ans = 1;
    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;
            
            
            
        
            
Nachia