結果

問題 No.2170 Left Addition Machine
ユーザー hotman78hotman78
提出日時 2022-12-22 10:06:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 631 ms / 2,000 ms
コード長 945 bytes
コンパイル時間 2,064 ms
コンパイル使用メモリ 213,800 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2024-04-29 05:28:13
合計ジャッジ時間 39,601 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 488 ms
15,104 KB
testcase_04 AC 220 ms
5,376 KB
testcase_05 AC 310 ms
8,960 KB
testcase_06 AC 299 ms
9,816 KB
testcase_07 AC 450 ms
13,936 KB
testcase_08 AC 55 ms
8,832 KB
testcase_09 AC 389 ms
5,888 KB
testcase_10 AC 60 ms
5,376 KB
testcase_11 AC 213 ms
9,344 KB
testcase_12 AC 529 ms
15,352 KB
testcase_13 AC 529 ms
15,332 KB
testcase_14 AC 515 ms
15,360 KB
testcase_15 AC 525 ms
15,340 KB
testcase_16 AC 549 ms
15,360 KB
testcase_17 AC 518 ms
15,360 KB
testcase_18 AC 512 ms
15,264 KB
testcase_19 AC 526 ms
15,360 KB
testcase_20 AC 556 ms
15,340 KB
testcase_21 AC 372 ms
5,376 KB
testcase_22 AC 387 ms
5,376 KB
testcase_23 AC 362 ms
5,376 KB
testcase_24 AC 361 ms
5,376 KB
testcase_25 AC 381 ms
5,376 KB
testcase_26 AC 376 ms
5,376 KB
testcase_27 AC 374 ms
5,376 KB
testcase_28 AC 366 ms
5,376 KB
testcase_29 AC 370 ms
5,376 KB
testcase_30 AC 534 ms
15,296 KB
testcase_31 AC 530 ms
15,320 KB
testcase_32 AC 540 ms
15,336 KB
testcase_33 AC 535 ms
15,356 KB
testcase_34 AC 511 ms
15,360 KB
testcase_35 AC 539 ms
15,360 KB
testcase_36 AC 540 ms
15,360 KB
testcase_37 AC 504 ms
15,416 KB
testcase_38 AC 519 ms
15,304 KB
testcase_39 AC 400 ms
5,376 KB
testcase_40 AC 396 ms
5,376 KB
testcase_41 AC 382 ms
5,376 KB
testcase_42 AC 384 ms
5,376 KB
testcase_43 AC 373 ms
5,376 KB
testcase_44 AC 372 ms
5,376 KB
testcase_45 AC 384 ms
5,376 KB
testcase_46 AC 379 ms
5,376 KB
testcase_47 AC 411 ms
5,376 KB
testcase_48 AC 535 ms
15,360 KB
testcase_49 AC 548 ms
15,232 KB
testcase_50 AC 536 ms
15,360 KB
testcase_51 AC 631 ms
15,376 KB
testcase_52 AC 524 ms
15,232 KB
testcase_53 AC 526 ms
15,232 KB
testcase_54 AC 524 ms
15,300 KB
testcase_55 AC 526 ms
15,476 KB
testcase_56 AC 524 ms
15,360 KB
testcase_57 AC 529 ms
15,304 KB
testcase_58 AC 526 ms
15,256 KB
testcase_59 AC 538 ms
15,332 KB
testcase_60 AC 521 ms
15,360 KB
testcase_61 AC 524 ms
15,360 KB
testcase_62 AC 526 ms
15,296 KB
testcase_63 AC 522 ms
15,260 KB
testcase_64 AC 532 ms
15,360 KB
testcase_65 AC 503 ms
15,360 KB
testcase_66 AC 128 ms
5,376 KB
testcase_67 AC 461 ms
15,360 KB
testcase_68 AC 500 ms
15,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/segtree.hpp>
#include<atcoder/modint.hpp>
using mint=atcoder::static_modint<998244353>;

using T=tuple<int,int,mint,mint>;
T f(T s,T t){
    if(get<1>(s)==-1)return t;
    if(get<1>(t)==-1)return s;
    if(get<1>(s)<get<0>(t)){
        return make_tuple(get<0>(s),get<1>(t),get<2>(s)*get<2>(t),get<3>(s)+get<3>(t)*get<2>(s));
    }else{
        return make_tuple(get<0>(t)>0?~get<0>(t):get<0>(t),get<1>(t),get<2>(t),get<3>(t));
    }
}
T id(){
    return make_tuple(-1,-1,mint(1),mint(0));
}

int main(){
    int n,q;
    cin>>n>>q;
    vector<int>a(n);
    vector<T>v(n);
    for(int i=0;i<n;++i){
        cin>>a[i];
        v[i]=make_tuple(a[i],a[i],mint(2),mint(a[i]));
    }
    atcoder::segtree<T,f,id>seg(v);
    while(q--){
        int l,r;
        cin>>l>>r;
        l--;
        auto [x,y,z,w]=seg.prod(l,r);
        if(x<0)x=~x;
        cout<<((w+x)/2).val()<<endl;
    }
}
0