結果

問題 No.2101 [Cherry Alpha N] ずっとこの数列だったらいいのに
ユーザー pockynypockyny
提出日時 2024-01-21 02:18:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,116 ms / 6,000 ms
コード長 2,110 bytes
コンパイル時間 1,563 ms
コンパイル使用メモリ 110,600 KB
実行使用メモリ 84,176 KB
最終ジャッジ日時 2024-09-28 05:49:27
合計ジャッジ時間 37,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 385 ms
43,152 KB
testcase_04 AC 632 ms
52,892 KB
testcase_05 AC 341 ms
41,852 KB
testcase_06 AC 569 ms
50,596 KB
testcase_07 AC 648 ms
54,596 KB
testcase_08 AC 625 ms
52,124 KB
testcase_09 AC 272 ms
29,152 KB
testcase_10 AC 246 ms
27,828 KB
testcase_11 AC 447 ms
45,164 KB
testcase_12 AC 455 ms
45,344 KB
testcase_13 AC 289 ms
29,380 KB
testcase_14 AC 276 ms
26,028 KB
testcase_15 AC 758 ms
57,340 KB
testcase_16 AC 566 ms
51,688 KB
testcase_17 AC 208 ms
23,752 KB
testcase_18 AC 982 ms
84,056 KB
testcase_19 AC 970 ms
84,056 KB
testcase_20 AC 1,116 ms
84,064 KB
testcase_21 AC 1,029 ms
84,060 KB
testcase_22 AC 976 ms
84,064 KB
testcase_23 AC 1,039 ms
84,176 KB
testcase_24 AC 983 ms
84,060 KB
testcase_25 AC 1,103 ms
84,056 KB
testcase_26 AC 1,034 ms
84,068 KB
testcase_27 AC 973 ms
84,044 KB
testcase_28 AC 947 ms
84,052 KB
testcase_29 AC 986 ms
84,016 KB
testcase_30 AC 976 ms
84,052 KB
testcase_31 AC 970 ms
84,060 KB
testcase_32 AC 981 ms
84,132 KB
testcase_33 AC 787 ms
79,828 KB
testcase_34 AC 809 ms
79,828 KB
testcase_35 AC 800 ms
79,828 KB
testcase_36 AC 786 ms
79,832 KB
testcase_37 AC 786 ms
79,952 KB
testcase_38 AC 165 ms
27,256 KB
testcase_39 AC 260 ms
28,464 KB
testcase_40 AC 159 ms
29,548 KB
testcase_41 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <atcoder/lazysegtree>
#include <vector>
#include <algorithm>

using namespace std;
using namespace atcoder;
typedef long long ll;
struct S{ll len,val = 0;};
struct F{ll x;};
S op(S l,S r){return S{l.len + r.len,l.val + r.val};}
S e(){return S{0,0};}
S mapping(F l,S r){return S{r.len,r.val + l.x*r.len};}
F compo(F l,F r){return F{l.x + r.x};}
F id(){return F{0};}
ll a[200010],t[200010],d[200010],l[200010],r[200010];
int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int i,n; cin >> n;
    vector<ll> z;
    z.push_back(0); z.push_back(1);
    for(i=1;i<=n;i++){
        cin >> a[i] >> t[i];
        z.push_back(t[i]);
        z.push_back(a[i] + t[i]);
    }
    vector<vector<int>> b(n + 1),c(n + 1);
    int q; cin >> q;
    for(i=0;i<q;i++){
        cin >> d[i] >> l[i] >> r[i];
        l[i]--;
        z.push_back(d[i] + 1);
        b[l[i]].push_back(i);
        c[r[i]].push_back(i);
    }
    sort(z.begin(),z.end());
    z.erase(unique(z.begin(),z.end()),z.end());
    vector<S> v;
    for(i=0;i<z.size() - 1;i++){
        v.push_back({z[i + 1] - z[i],0});
    }

    // for(ll u:z) cout << u << " ";
    // cout << endl;
    
    lazy_segtree<S,op,e,F,mapping,compo,id> seg(v);
    auto prod = [&](int l,int r){
        int le = lower_bound(z.begin(),z.end(),l) - z.begin();
        int ri = lower_bound(z.begin(),z.end(),r) - z.begin();
        return seg.prod(le,ri).val;
    };

    auto add = [&](int l,int r,ll x){
        int le = lower_bound(z.begin(),z.end(),l) - z.begin();
        int ri = lower_bound(z.begin(),z.end(),r) - z.begin();
        seg.apply(le,ri,{x});
    };

    vector<ll> ans(q);
    for(i=0;i<=n;i++){
        add(0,1,a[i]);
        if(i){
            add(t[i],t[i] + a[i],-1);
        }
        for(int id:b[i]){
            ans[id] -= prod(0,d[id] + 1);
        }
        for(int id:c[i]){
            ans[id] += prod(0,d[id] + 1);
        }
        // for(int j=0;j<v.size();j++){
        //     cout << seg.get(j).val << " ";
        // }
        // cout << "\n";
    }
    for(i=0;i<q;i++) cout << ans[i] << "\n";
}
0