結果
| 問題 | No.1441 MErGe | 
| コンテスト | |
| ユーザー |  snow39 | 
| 提出日時 | 2021-03-26 21:51:38 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 304 ms / 1,000 ms | 
| コード長 | 3,258 bytes | 
| コンパイル時間 | 1,384 ms | 
| コンパイル使用メモリ | 125,852 KB | 
| 最終ジャッジ日時 | 2025-01-19 22:25:45 | 
| ジャッジサーバーID (参考情報) | judge2 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 28 | 
ソースコード
#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <cmath>
#include <map>
#include <queue>
#include <iomanip>
#include <set>
#include <tuple>
#define mkp make_pair
#define mkt make_tuple
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define all(v) v.begin(),v.end()
using namespace std;
typedef long long ll;
const ll MOD=1e9+7;
template<class T> void chmin(T &a,const T &b){if(a>b) a=b;}
template<class T> void chmax(T &a,const T &b){if(a<b) a=b;}
#include <functional>
#include <climits>
//SegmentTree<int> seg(N,[](int a,int b){return min(a,b);},INT_MAX);
template< typename T>
class SegmentTree{
private:
  void resize(int size){
      n=1;
      while(n<size) n*=2;
      tree.resize(2*n-1,def);
  }
public:
  using F = function<T(T,T)>;
  int n;
  vector<T> tree;
  F operation;
  T def;
  SegmentTree(){}
  SegmentTree(int size,F _operation,T _def):operation(_operation),def(_def){
    resize(size);
  }
  void embody(int size,F _operation,T _def){
    operation=_operation;
    def=_def;
    resize(size);
  }
  void initialize(const vector<T> &v){
    int size=v.size();
    resize(size);
    for(int i=0;i<size;i++) tree[i+n-1]=v[i];
    for(int i=n-2;i>=0;i--) tree[i]=operation(tree[2*i+1],tree[2*i+2]);
  }
  void update(int index,T value){
    index+=n-1;
    tree[index]=value;
    while(index>0){
      index=(index-1)/2;
      tree[index]=operation(tree[2*index+1],tree[2*index+2]);
    }
  }
  T query(int a,int b,int k=0,int l=0,int r=-1){//[a,b)
    if(r<0) r=n;
    if(r<=a||b<=l) return def;
    else if(a<=l&&r<=b) return tree[k];
    else{
      T lval=query(a,b,2*k+1,l,(l+r)/2);
      T rval=query(a,b,2*k+2,(l+r)/2,r);
      return operation(lval,rval);
    }
  }
  T get(int index){
      return tree[index+n-1];
  }
  int find(int x,int k=0,int l=0,int r=-1){// a[0]+...+a[i]>=x (i:minimal)
    if(r<0) r=n;
    if(tree[k]<x) return -1;
    if(r-l==1) return k-(n-1);
    if(tree[2*k+1]>=x) return find(x,2*k+1,l,(l+r)/2);
    else return find(x-tree[2*k+1],2*k+2,(l+r)/2,r);
  }
  //right -> change vl to vr   (notice doesn't contain b. range [a,b))
  int find_left(int a,int b,T x,int k=0,int l=0,int r=-1){// max(a[a],...,a[i])>=x (i:minimal)
      if(r<0) r=n;
      if(tree[k]<x||r<=a||b<=l) return -1;
      if(r-l==1) return k-(n-1);
      int vl=find_left(a,b,x,2*k+1,l,(l+r)/2);
      if(vl>=0) return vl;
      return find_left(a,b,x-tree[2*k+1],2*k+2,(l+r)/2,r);
  }
};
int main(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  int N,Q;
  cin>>N>>Q;
  vector<ll> A(N);
  rep(i,N) cin>>A[i];
  SegmentTree<int> seg(N,[](int a,int b){
    return a+b;
  },0);
  seg.initialize(vector<int> (N,1));
  vector<ll> sum(N+1,0);
  rep(i,N) sum[i+1]=sum[i]+A[i];
  set<int> se;
  rep(i,N) se.insert(i);
  rep(q,Q){
    int t,l,r;
    cin>>t>>l>>r;
    l--;r--;
    if(t==1){
      int st=seg.find_left(0,N,l+1);
      auto itr=se.lower_bound(st);
      int cnt=0;
      while(cnt<r-l){
        int pos=*itr;
        seg.update(pos,0);
        itr=se.erase(itr);
        cnt++;
      }
    }else{
      int pr=seg.find_left(0,N,r+1);
      int pl=-1;
      if(l>0) pl=seg.find_left(0,N,l);
      ll res=sum[pr+1]-sum[pl+1];
      cout<<res<<"\n";
    }
  }
  return 0;
}
            
            
            
        