結果

問題 No.2697 Range LIS Query
ユーザー maeshunmaeshun
提出日時 2024-03-22 23:21:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 6,641 ms / 10,000 ms
コード長 2,189 bytes
コンパイル時間 5,374 ms
コンパイル使用メモリ 286,620 KB
実行使用メモリ 100,496 KB
最終ジャッジ日時 2024-09-30 12:41:01
合計ジャッジ時間 64,225 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 94 ms
6,820 KB
testcase_04 AC 92 ms
6,820 KB
testcase_05 AC 101 ms
6,816 KB
testcase_06 AC 4,822 ms
100,308 KB
testcase_07 AC 5,116 ms
100,272 KB
testcase_08 AC 5,895 ms
100,496 KB
testcase_09 AC 3,716 ms
100,304 KB
testcase_10 AC 3,712 ms
100,320 KB
testcase_11 AC 3,973 ms
100,440 KB
testcase_12 AC 3,576 ms
96,780 KB
testcase_13 AC 3,575 ms
91,700 KB
testcase_14 AC 4,783 ms
92,324 KB
testcase_15 AC 6,008 ms
100,268 KB
testcase_16 AC 6,641 ms
100,400 KB
testcase_17 AC 6,368 ms
100,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=0;i<=(n);i++)
#define ll long long
using mint = modint998244353;
using P = pair<ll,ll>;
using lb = long double;
using T = tuple<ll, ll, ll>;
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

struct S { 
   vector<vector<int>> v;
   int len;
};

S op(S a, S b){
    S c;
    c.v = vector<vector<int>>(4, vector<int>(4));
    for(int i=0;i<4;i++) for(int j=0;j<4;j++){
        c.v[i][j] = max(a.v[i][j],b.v[i][j]);
    }
    for(int i=0;i<4;i++){
        for(int j=i;j<4;j++){
            for(int k=j;k<4;k++){
                for(int l=k;l<4;l++){
                    c.v[i][l] = max(c.v[i][l], a.v[i][j]+b.v[k][l]);
                }
            }
        }
    }
    c.len = a.len + b.len;
    return c;
}

S e(){
    S c;
    c.v = vector<vector<int>>(4, vector<int>(4));
    c.len = 0;
    return c;
}

S mapping(int f, S a) {
    if(f==-1) return a;
    a.v = vector<vector<int>>(4, vector<int>(4));
    a.v[f][f] = a.len;
    return a;
}

int composition(int f, int g) {
    if(f==-1) return g;
    return f;
}

int id(){
    return -1;
}

int main()
{
    int n;
    cin >> n;
    vector<int> a(n);
    rep(i,n) cin >> a[i];
    lazy_segtree<S, op, e,int, mapping, composition, id> seg(n);
    rep(i,n){
        --a[i];
        S c;
        c.v = vector<vector<int>>(4,vector<int>(4));
        c.v[a[i]][a[i]] = 1;
        c.len = 1;
        seg.set(i,c);
    }
    int q;
    cin >> q;
    while(q--){
        int t;
        cin >> t;
        if(t==1){
            int l, r;
            cin >> l >> r;
            --l;
            auto vs = seg.prod(l,r);
            int ans = 0;
            dbg(vs.v);
            rep(i,4) rep(j,4) {
                ans = max(ans, vs.v[i][j]);
            }
            cout<<ans<<endl;
        }
        else{
            int l, r, x;
            cin >> l >> r >> x;
            --l;
            --x;
            seg.apply(l,r,x);
        }
    }
    return 0;
}
0