結果

問題 No.2101 [Cherry Alpha N] ずっとこの数列だったらいいのに
ユーザー Nzt3Nzt3
提出日時 2022-10-26 23:08:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 292 ms / 6,000 ms
コード長 1,204 bytes
コンパイル時間 2,291 ms
コンパイル使用メモリ 211,152 KB
実行使用メモリ 28,464 KB
最終ジャッジ日時 2024-07-04 11:09:36
合計ジャッジ時間 20,019 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 121 ms
15,824 KB
testcase_04 AC 194 ms
16,016 KB
testcase_05 AC 111 ms
15,576 KB
testcase_06 AC 180 ms
15,792 KB
testcase_07 AC 200 ms
16,452 KB
testcase_08 AC 180 ms
15,652 KB
testcase_09 AC 98 ms
10,440 KB
testcase_10 AC 87 ms
9,984 KB
testcase_11 AC 135 ms
15,968 KB
testcase_12 AC 146 ms
16,088 KB
testcase_13 AC 92 ms
9,972 KB
testcase_14 AC 96 ms
9,868 KB
testcase_15 AC 217 ms
17,184 KB
testcase_16 AC 177 ms
16,664 KB
testcase_17 AC 76 ms
9,540 KB
testcase_18 AC 276 ms
28,452 KB
testcase_19 AC 269 ms
28,324 KB
testcase_20 AC 268 ms
28,448 KB
testcase_21 AC 268 ms
28,448 KB
testcase_22 AC 292 ms
28,320 KB
testcase_23 AC 278 ms
28,320 KB
testcase_24 AC 267 ms
28,452 KB
testcase_25 AC 261 ms
28,316 KB
testcase_26 AC 267 ms
28,448 KB
testcase_27 AC 277 ms
28,316 KB
testcase_28 AC 275 ms
28,316 KB
testcase_29 AC 283 ms
28,452 KB
testcase_30 AC 289 ms
28,324 KB
testcase_31 AC 262 ms
28,464 KB
testcase_32 AC 263 ms
28,276 KB
testcase_33 AC 258 ms
28,316 KB
testcase_34 AC 257 ms
28,320 KB
testcase_35 AC 243 ms
28,324 KB
testcase_36 AC 259 ms
28,320 KB
testcase_37 AC 251 ms
28,324 KB
testcase_38 AC 69 ms
9,988 KB
testcase_39 AC 121 ms
10,436 KB
testcase_40 AC 222 ms
28,324 KB
testcase_41 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

long long getsum(int l,int r,const vector<long long>& BIT){
  long long ret=0;
  for(;r>0;r-=r&-r)ret+=BIT[r];
  for(--l;l>0;l-=l&-l)ret-=BIT[l];
  return ret;
}
void add(int p,vector<long long>& BIT,int v){
  for(;p<BIT.size();p+=p&-p)BIT[p]+=v;
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector<long long>val(N+1),cnt(N+1);
  vector<array<int,5>>evt;
  for(int i=1;i<=N;i++){
    int v;
    cin>>v;
    add(i,val,v);
    int t;
    cin>>t;
    evt.push_back({t,0,i,t-1,0});
    evt.push_back({t+v-1,1,i,-(v+t-1),0});
  }
  int Q;
  cin>>Q;
  vector<long long>ans(Q);
  for(int i=0;i<Q;i++){
    int D,L,R;
    cin>>D>>L>>R;
    evt.push_back({D,2,L,R,i});
  }
  sort(evt.begin(),evt.end());

  for(int i=0;i<N*2+Q;i++){
    switch(evt[i][1]){

      case 0:
        add(evt[i][2],val,evt[i][3]);
        add(evt[i][2],cnt,1);
        break;
      case 1:
        add(evt[i][2],val,evt[i][3]);
        add(evt[i][2],cnt,-1);
        break;
      case 2:
        ans[evt[i][4]]=getsum(evt[i][2],evt[i][3],val)-getsum(evt[i][2],evt[i][3],cnt)*evt[i][0];
        break;

    }
  }

  for(auto i:ans)cout<<i<<'\n';
}
0