結果

問題 No.789 範囲の合計
ユーザー fumiphysfumiphys
提出日時 2019-03-04 22:41:23
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 113 ms / 1,000 ms
コード長 3,454 bytes
コンパイル時間 1,166 ms
コンパイル使用メモリ 128,396 KB
実行使用メモリ 12,868 KB
最終ジャッジ日時 2023-09-05 18:34:28
合計ジャッジ時間 3,069 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 113 ms
10,604 KB
testcase_03 AC 45 ms
6,004 KB
testcase_04 AC 111 ms
11,320 KB
testcase_05 AC 84 ms
10,524 KB
testcase_06 AC 92 ms
10,616 KB
testcase_07 AC 35 ms
6,504 KB
testcase_08 AC 99 ms
12,868 KB
testcase_09 AC 85 ms
11,184 KB
testcase_10 AC 103 ms
9,036 KB
testcase_11 AC 72 ms
10,992 KB
testcase_12 AC 69 ms
10,856 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// includes
#include <cstdio>
#include <cstdint>
#include <iostream>
#include <iomanip>
#include <string>
#include <queue>
#include <stack>
#include <vector>
#include <set>
#include <map>
#include <unordered_map>
#include <algorithm>
#include <utility>
#include <functional>
#include <cmath>
#include <climits>
#include <bitset>
#include <list>
#include <random>

// macros
#define ll long long int
#define pb emplace_back
#define mk make_pair
#define pq priority_queue
#define FOR(i, a, b) for(int i=(a);i<(b);++i)
#define rep(i, n) FOR(i, 0, n)
#define rrep(i, n) for(int i=((int)(n)-1);i>=0;i--)
#define all(x) (x).begin(),(x).end()
#define sz(x) ((int)(x).size())
#define UNIQUE(v) v.erase(unique(v.begin(), v.end()), v.end())

using namespace std;

//  types
typedef pair<int, int> P;
typedef pair<ll, int> Pl;
typedef pair<ll, ll> Pll;
typedef pair<double, double> Pd;
 
// constants
const int inf = 1e9;
const ll linf = 1LL << 50;
const double EPS = 1e-10;
const int mod = 1e9 + 7;

// solve
template <class T>bool chmax(T &a, const T &b){if(a < b){a = b; return 1;} return 0;}
template <class T>bool chmin(T &a, const T &b){if(a > b){a = b; return 1;} return 0;}

template<typename T, typename E>
struct SegmentTree_ {
  function<T(T, T)> f;
  function<T(T, E)> g;
  int n;
  T def;
  vector<T> vec;
  SegmentTree_(){}
  SegmentTree_(int n_, function<T(T, T)> f_, function<T(T, E)> g_, T def_, vector<T> v=vector<T>()){
    f = f_;
    g = g_;
    def = def_;

    // initialize vector
    n = 1;
    while(n < n_){
      n *= 2;
    }
    vec = vector<T>(2*n -1, def);

    // initialize segment tree
    for(int i = 0; i < v.size(); i++){
      vec[i + n - 1] = v[i];
    }
    for(int i = n - 2; i >= 0; i--){
      vec[i] = f(vec[2*i+1], vec[2*i+2]);
    }
  }
  void update(int k, E val){
    k = k + n - 1;
    vec[k] = g(vec[k], val);
    while(k > 0){
      k = (k - 1) / 2;
      vec[k] = f(vec[2*k+1], vec[2*k+2]);
    }
  }
  // [l, r) -> [a, b) (at k)
  T query(int a, int b, int k, int l, int r){
    if(r <= a || b <= l)return def;
    if(a <= l && r <= b)return vec[k];
    T ld = query(a, b, 2*k+1, l, (l+r)/2);
    T rd = query(a, b, 2*k+2, (l+r)/2, r);
    return f(ld, rd);
  }
  T query(int a, int b){
    return query(a, b, 0, 0, n);
  }
};

template<typename T, typename E>
using SegmentTree = struct SegmentTree_<T, E>;
using SegmentTreeI = SegmentTree<int, int>;

int main(int argc, char const* argv[])
{
  ios_base::sync_with_stdio(false);
  cin.tie(0);
  int n;
  cin >> n;
  vector<ll> x;
  vector<pair<int, Pll> > vec(n);
  rep(i, n){
    int c;
    cin >> c;
    ll a, b;
    cin >> a >> b;
    vec[i] = mk(c, mk(a, b));
    if(c == 0){
      x.pb(a);
    }
  }
  sort(all(x));
  UNIQUE(x);
  map<ll, int> tr;
  for(int i = 0; i < sz(x); i++)tr[x[i]] = i;
  //for(int i = 0; i < sz(x); i++)cout << x[i] << endl;
  ll res = 0;
  SegmentTree<ll, ll> seg = SegmentTree<ll, ll>(sz(tr), [](ll a, ll b){return a + b;},
      [](ll a, ll b){return a + b;}, 0, vector<ll>(sz(tr), 0));
  for(int i = 0; i < n; i++){
    int c = vec[i].first;
    ll a = vec[i].second.first;
    ll b = vec[i].second.second;
    if(c == 0){
      seg.update(tr[a], b);
    }else{
      int r = upper_bound(all(x), b) - x.begin();
      int l = lower_bound(all(x), a) - x.begin();
      res += seg.query(l, r);
    }
    //for(int i = 0; i < sz(x); i++)cout << seg.query(i, i+1) << "\n "[i + 1 != sz(x)];
  }
  cout << res << endl;
	return 0;
}
0