結果

問題 No.1827 最長部分スーパーリッチ門松列列
ユーザー tatyamtatyam
提出日時 2022-01-28 22:18:42
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,077 bytes
コンパイル時間 3,061 ms
コンパイル使用メモリ 251,780 KB
実行使用メモリ 35,688 KB
最終ジャッジ日時 2024-06-09 15:31:14
合計ジャッジ時間 40,559 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 26 ms
5,376 KB
testcase_04 AC 453 ms
5,376 KB
testcase_05 AC 430 ms
5,376 KB
testcase_06 AC 433 ms
5,376 KB
testcase_07 AC 1,870 ms
35,576 KB
testcase_08 AC 1,887 ms
35,456 KB
testcase_09 AC 1,868 ms
35,584 KB
testcase_10 AC 1,877 ms
35,456 KB
testcase_11 AC 1,884 ms
35,456 KB
testcase_12 AC 1,838 ms
35,464 KB
testcase_13 AC 1,856 ms
35,584 KB
testcase_14 AC 1,877 ms
35,468 KB
testcase_15 AC 1,874 ms
35,584 KB
testcase_16 AC 1,866 ms
35,548 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,888 ms
35,584 KB
testcase_20 AC 1,876 ms
35,456 KB
testcase_21 AC 1,867 ms
35,584 KB
testcase_22 AC 1,889 ms
35,456 KB
testcase_23 AC 1,880 ms
35,456 KB
testcase_24 AC 1,879 ms
35,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/lazysegtree>
using namespace std;
const int INF = INT_MAX / 2;
void chmax(int& a, int b){ if(a < b) a = b; }

using T = array<array<int, 2>, 2>;
constexpr T e(){ return T{0, -INF, -INF, 0}; }
constexpr T none(T, T){ return e(); }
T op(T a, T b){
    T ans = e();
    for(int i = 0; i < 2; i++)
        for(int j = 0; j < 2; j++)
            for(int k = 0; k < 2; k++)
                chmax(ans[i][k], a[i][j] + b[j][k]);
    return ans;
}
void solve(){
    int n;
    cin >> n;
    atcoder::lazy_segtree<T, none, e, T, op, op, e> seg(n - 1);
    for(int i = 0; i < n; i++){
        int p;
        cin >> p;
        p--;
        seg.apply(0, p, T{0, 1, -INF, 0});
        seg.apply(p, n - 1, T{0, -INF, 1, 0});
    }
    int ans = 0;
    for(int i = 0; i < n - 1; i++){
        const T x = seg.get(i);
        for(int i = 0; i < 2; i++) for(int j = 0; j < 2; j++) chmax(ans, x[i][j]);
    }
    cout << ans << endl;
}
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int t;
    cin >> t;
    while(t--) solve();
}
0