結果

問題 No.1827 最長部分スーパーリッチ門松列列
ユーザー pockynypockyny
提出日時 2022-01-28 22:15:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 1,132 bytes
コンパイル時間 1,029 ms
コンパイル使用メモリ 92,896 KB
実行使用メモリ 25,344 KB
最終ジャッジ日時 2024-06-09 15:24:58
合計ジャッジ時間 4,332 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 6 ms
5,376 KB
testcase_04 AC 28 ms
5,376 KB
testcase_05 AC 28 ms
5,376 KB
testcase_06 AC 28 ms
5,376 KB
testcase_07 AC 105 ms
25,312 KB
testcase_08 AC 105 ms
25,316 KB
testcase_09 AC 106 ms
25,240 KB
testcase_10 AC 104 ms
25,336 KB
testcase_11 AC 105 ms
25,200 KB
testcase_12 AC 107 ms
25,296 KB
testcase_13 AC 105 ms
25,248 KB
testcase_14 AC 105 ms
25,252 KB
testcase_15 AC 106 ms
25,344 KB
testcase_16 AC 104 ms
25,312 KB
testcase_17 AC 148 ms
25,312 KB
testcase_18 AC 149 ms
25,224 KB
testcase_19 AC 105 ms
25,236 KB
testcase_20 AC 105 ms
25,308 KB
testcase_21 AC 105 ms
25,216 KB
testcase_22 AC 106 ms
25,272 KB
testcase_23 AC 106 ms
25,224 KB
testcase_24 AC 109 ms
25,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <atcoder/segtree>
#include <vector>

using namespace std;
using namespace atcoder;
struct S{int le,ri,num;};
S e(){ return S{-1,-1,0};}
S op(S a,S b){
    if(a.le==-1 && b.le!=-1) return b;
    if(a.le!=-1 && b.le==-1) return a;
    if(a.le==-1 && b.le==-1) return e();
    int nnum = a.num + b.num + (a.ri!=b.le);
    return {a.le,b.ri,nnum};
}

int p[500010],q[500010];
int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);   
    int t; cin >> t;
    while(t){
        t--;
        int i,n; cin >> n;
        for(i=0;i<n;i++) cin >> p[i];
        for(i=0;i<n;i++) q[p[i] - 1] = i;
        vector<S> v(n);
        for(i=0;i<n;i++) v[i] = {0,0,0};
        segtree<S,op,e> seg(v);
        int ans = -1;
        for(i=0;i<n;i++){
            int j = q[i];
            seg.set(j,S{1,1,0});
            ans = max(ans,seg.all_prod().num);
            /*for(int j=0;j<n;j++){
                cout << "(" << seg.prod(j,j + 1).le << "," << seg.prod(j,j + 1).ri << "," << seg.prod(j,j + 1).num << ") ";
            }*/
            //cout << endl;
        }
        cout << ans + 1<< "\n";
    }
}
0