結果

問題 No.2101 [Cherry Alpha N] ずっとこの数列だったらいいのに
ユーザー butsurizukibutsurizuki
提出日時 2022-10-07 11:44:14
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 653 ms / 6,000 ms
コード長 1,499 bytes
コンパイル時間 10,085 ms
コンパイル使用メモリ 337,164 KB
実行使用メモリ 90,996 KB
最終ジャッジ日時 2024-06-26 13:29:41
合計ジャッジ時間 33,394 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 279 ms
38,568 KB
testcase_04 AC 434 ms
53,100 KB
testcase_05 AC 219 ms
32,892 KB
testcase_06 AC 339 ms
49,452 KB
testcase_07 AC 444 ms
54,672 KB
testcase_08 AC 379 ms
52,216 KB
testcase_09 AC 175 ms
29,156 KB
testcase_10 AC 167 ms
27,528 KB
testcase_11 AC 283 ms
47,704 KB
testcase_12 AC 278 ms
47,600 KB
testcase_13 AC 190 ms
29,424 KB
testcase_14 AC 216 ms
27,448 KB
testcase_15 AC 432 ms
59,400 KB
testcase_16 AC 370 ms
51,736 KB
testcase_17 AC 149 ms
24,560 KB
testcase_18 AC 653 ms
90,620 KB
testcase_19 AC 541 ms
90,624 KB
testcase_20 AC 538 ms
90,620 KB
testcase_21 AC 542 ms
90,620 KB
testcase_22 AC 531 ms
90,744 KB
testcase_23 AC 540 ms
90,624 KB
testcase_24 AC 538 ms
90,752 KB
testcase_25 AC 535 ms
90,752 KB
testcase_26 AC 552 ms
90,628 KB
testcase_27 AC 606 ms
90,748 KB
testcase_28 AC 544 ms
90,624 KB
testcase_29 AC 544 ms
90,748 KB
testcase_30 AC 549 ms
90,616 KB
testcase_31 AC 535 ms
90,620 KB
testcase_32 AC 525 ms
90,620 KB
testcase_33 AC 459 ms
65,824 KB
testcase_34 AC 452 ms
65,700 KB
testcase_35 AC 462 ms
65,820 KB
testcase_36 AC 453 ms
65,824 KB
testcase_37 AC 455 ms
65,772 KB
testcase_38 AC 121 ms
19,444 KB
testcase_39 AC 233 ms
43,992 KB
testcase_40 AC 411 ms
90,996 KB
testcase_41 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "testlib.h"
#include <bits/stdc++.h>
#include <atcoder/segtree>

using namespace std;
using namespace atcoder;
using pl=pair<long long,long long>;
using ppl=pair<pl,pl>;

pl op(pl a,pl b){
  return {a.first+b.first,a.second+b.second};
}

pl e(){return {0,0};}

int main(){
  registerValidation();
  long long n=inf.readLong(1ll,200000ll);inf.readEoln();
  vector<pl> init(n);
  vector<ppl> event;
  for(int i=0;i<n;i++){
    long long a=inf.readLong(0ll,1000000000ll);inf.readSpace();
    long long t=inf.readLong(1ll,1000000000ll);inf.readEoln();
    init[i]={0,a};
    if(a!=0){
      event.push_back({{t,-i},{-1,t+a-1}}); // if a==1 this comes first
      event.push_back({{t+a-1,-i},{0,0}}); // if a==1 this comes second
    }
  }
  long long q=inf.readLong(1ll,200000ll);inf.readEoln();
  for(int i=1;i<=q;i++){
    long long d=inf.readLong(0ll,2000000000ll);inf.readSpace();
    long long l=inf.readLong(1ll,n);inf.readSpace();
    long long r=inf.readLong(l,n);inf.readEoln();
    event.push_back({{d,i},{l,r}});
  }
  inf.readEof();
  segtree<pl,op,e> seg(init);
  sort(event.begin(),event.end());
  vector<long long> res(q+1);
  for(auto &nx : event){
    long long x=nx.first.first;
    long long knd=nx.first.second;
    long long l=nx.second.first;
    long long r=nx.second.second;
    if(knd<=0){
      seg.set(-knd,{l,r});
    }
    else{
      pl f=seg.prod(l-1,r);
      res[knd]=f.first*x+f.second;
    }
  }
  for(int i=1;i<=q;i++){cout << res[i] << "\n";}
  return 0;
}
0