結果

問題 No.2433 Min Increasing Sequence
ユーザー momoyuumomoyuu
提出日時 2023-08-18 22:33:59
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 1,548 bytes
コンパイル時間 3,312 ms
コンパイル使用メモリ 269,400 KB
実行使用メモリ 16,764 KB
最終ジャッジ日時 2024-05-06 04:53:28
合計ジャッジ時間 9,425 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 311 ms
16,764 KB
testcase_05 AC 124 ms
9,816 KB
testcase_06 AC 215 ms
16,496 KB
testcase_07 AC 120 ms
10,124 KB
testcase_08 AC 247 ms
16,700 KB
testcase_09 AC 185 ms
16,016 KB
testcase_10 AC 92 ms
9,708 KB
testcase_11 AC 159 ms
10,280 KB
testcase_12 AC 80 ms
6,880 KB
testcase_13 AC 62 ms
6,820 KB
testcase_14 AC 187 ms
10,472 KB
testcase_15 AC 69 ms
6,704 KB
testcase_16 AC 85 ms
6,768 KB
testcase_17 AC 62 ms
6,560 KB
testcase_18 AC 288 ms
16,592 KB
testcase_19 AC 300 ms
16,720 KB
testcase_20 AC 14 ms
5,376 KB
testcase_21 AC 263 ms
16,420 KB
testcase_22 AC 286 ms
16,716 KB
testcase_23 AC 248 ms
16,372 KB
testcase_24 AC 291 ms
16,728 KB
testcase_25 AC 264 ms
16,536 KB
testcase_26 AC 206 ms
16,000 KB
testcase_27 AC 261 ms
16,500 KB
testcase_28 AC 228 ms
16,436 KB
testcase_29 AC 39 ms
5,376 KB
testcase_30 AC 36 ms
5,376 KB
testcase_31 AC 26 ms
5,376 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