結果

問題 No.877 Range ReLU Query
ユーザー けけけけ
提出日時 2024-11-30 16:11:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 998 bytes
コンパイル時間 2,581 ms
コンパイル使用メモリ 220,796 KB
実行使用メモリ 21,036 KB
最終ジャッジ日時 2024-11-30 16:11:17
合計ジャッジ時間 6,691 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 263 ms
19,224 KB
testcase_12 AC 215 ms
18,080 KB
testcase_13 AC 168 ms
14,252 KB
testcase_14 AC 180 ms
14,276 KB
testcase_15 AC 252 ms
20,616 KB
testcase_16 AC 253 ms
19,896 KB
testcase_17 AC 245 ms
20,312 KB
testcase_18 AC 239 ms
20,308 KB
testcase_19 AC 238 ms
21,036 KB
testcase_20 AC 255 ms
20,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);++i)
using namespace std;
using ll = long long;
#include<atcoder/segtree>
using namespace atcoder;
using S=pair<ll,ll>;
S op(S a, S b){
    a.first+=b.first;
    a.second+=b.second;
    return a;
}
S e(){
    return make_pair(0,0);
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int n,q;
    cin>>n>>q;
    vector<int> a(n);
    rep(i,n)cin>>a[i];

    vector<vector<int>> ev(n);
    rep(i,n) ev[i] = {a[i],i};


    rep(i,q){
        int t,l,r,x;
        cin>>t>>l>>r>>x;
        l--;
        ev.push_back({x,l,r,i});
    }

    sort(ev.begin(),ev.end());
    vector<ll> ans(q);

    segtree<S,op,e> seg(n);
    rep(i,n) seg.set(i, make_pair(a[i],1));

    for(auto v: ev){
        if(v.size()==2){
            seg.set(v[1], make_pair(0,0));
        }
        else{
            S s = seg.prod(v[1],v[2]);
            ans[v[3]] = s.first-s.second*v[0];
        }
    }    
    rep(i,q)cout<<ans[i]<<endl;

}
0