結果

問題 No.2433 Min Increasing Sequence
ユーザー momoyuumomoyuu
提出日時 2023-08-18 22:33:59
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 429 ms / 2,000 ms
コード長 1,548 bytes
コンパイル時間 4,017 ms
コンパイル使用メモリ 269,016 KB
実行使用メモリ 16,888 KB
最終ジャッジ日時 2024-11-28 08:33:02
合計ジャッジ時間 11,212 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 429 ms
16,888 KB
testcase_05 AC 135 ms
9,948 KB
testcase_06 AC 242 ms
16,624 KB
testcase_07 AC 136 ms
10,128 KB
testcase_08 AC 274 ms
16,704 KB
testcase_09 AC 208 ms
16,144 KB
testcase_10 AC 107 ms
9,588 KB
testcase_11 AC 191 ms
10,412 KB
testcase_12 AC 94 ms
6,752 KB
testcase_13 AC 72 ms
6,696 KB
testcase_14 AC 222 ms
10,468 KB
testcase_15 AC 78 ms
6,704 KB
testcase_16 AC 99 ms
6,896 KB
testcase_17 AC 69 ms
6,560 KB
testcase_18 AC 359 ms
16,720 KB
testcase_19 AC 362 ms
16,716 KB
testcase_20 AC 15 ms
5,248 KB
testcase_21 AC 332 ms
16,560 KB
testcase_22 AC 354 ms
16,712 KB
testcase_23 AC 305 ms
16,360 KB
testcase_24 AC 371 ms
16,732 KB
testcase_25 AC 332 ms
16,536 KB
testcase_26 AC 258 ms
16,132 KB
testcase_27 AC 310 ms
16,504 KB
testcase_28 AC 279 ms
16,312 KB
testcase_29 AC 43 ms
5,248 KB
testcase_30 AC 40 ms
5,248 KB
testcase_31 AC 30 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;


#include<atcoder/modint>
#include<atcoder/lazysegtree>
#include<atcoder/segtree>
using mint = atcoder::modint998244353;

int op1(int a,int b){
    return max(a,b);
}
int e1(){
    return -1;
}
int op2(int a,int b){
    return min(a,b);
}
int e2(){
    return 1e9;
}

using dat = pair<mint,mint>;
dat op(dat a,dat b){
    a.first += b.first;
    a.second += b.second;
    return a;
}
dat e(){
    return make_pair(0,0);
}
mint composition(mint a,mint b){
    return a + b;
}
mint id(){
    return 0;}

dat mapping(mint a,dat b){
    b.first += a*b.second;
    return b;
}


int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n;
    cin>>n;
    vector<int> a(n);
    for(int i = 0;i<n;i++) cin>>a[i];
    atcoder::segtree<int,op1,e1> s1(n+1);
    atcoder::lazy_segtree<dat,op,e,mint,mapping,composition,id> seg(n+1);
    atcoder::segtree<int,op2,e2> s2(n+1);
    for(int i = 0;i<=n;i++) seg.set(i,make_pair(0,1));
    seg.apply(0,1,1);
    
    vector<pair<int,int>> now;
    for(int i = 0;i<n;i++) now.push_back(make_pair(a[i],i));
    sort(now.begin(),now.end());
    for(int i = 0;i<n;i++){
        int ni = now[i].second;
        int le = 0;
        if(ni>0) le = s1.prod(0,ni) + 1;
        s1.set(ni,ni);
        mint can = seg.prod(le,ni+1).first;
        int ri = s2.prod(ni+1,n+1);
        if(ri==1e9) ri = n;
        seg.apply(ni,ri+1,can);
        s2.set(ni,ni);
        //cout<<can.val()<<endl;
    }
    cout<<seg.get(n).first.val()<<endl;


}

0