結果

問題 No.789 範囲の合計
ユーザー yuppe19 😺yuppe19 😺
提出日時 2019-11-04 09:27:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 192 ms / 1,000 ms
コード長 1,468 bytes
コンパイル時間 1,047 ms
コンパイル使用メモリ 81,252 KB
実行使用メモリ 17,192 KB
最終ジャッジ日時 2024-09-14 23:37:48
合計ジャッジ時間 3,308 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 164 ms
15,648 KB
testcase_03 AC 43 ms
5,376 KB
testcase_04 AC 163 ms
15,148 KB
testcase_05 AC 127 ms
15,856 KB
testcase_06 AC 135 ms
15,652 KB
testcase_07 AC 37 ms
5,376 KB
testcase_08 AC 91 ms
9,880 KB
testcase_09 AC 84 ms
9,004 KB
testcase_10 AC 192 ms
17,192 KB
testcase_11 AC 142 ms
15,032 KB
testcase_12 AC 143 ms
15,188 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cstdint>
#include <cstdio>
#include <map>
#include <tuple>
#include <vector>
using namespace std;
using i64 = int64_t;

template <class T>
map<T, size_t> compress(const vector<T> &v) {
  vector<T> mp = v;
  sort(mp.begin(), mp.end()); mp.erase(unique(mp.begin(), mp.end()), mp.end());
  map<T, size_t> w;
  for(size_t i=0, m=mp.size(); i<m; ++i) {
    w[mp[i]] = i;
  }
  return w;
}

template <class T>
class BIT {
  size_t N;
  vector<T> dat;
 public:
  explicit BIT(size_t n) : N(n+2), dat(N) {}
  void add(size_t k, T x) {
    for(size_t i=k+1; i<N; i+=i&-i) { dat[i] += x; }
  }
  T sum(size_t k) {
    T res = 0;
    for(size_t i=k; i; i-=i&-i) { res += dat[i]; }
    return res;
  }
};

int main(void) {
  size_t Q; scanf("%lu", &Q);
  vector<tuple<int, int, int>> logs;
  vector<int> v;
  for(size_t q=0; q<Q; ++q) {
    int a, b, c; scanf("%d%d%d", &a, &b, &c);
    switch(a) {
      case 0:
        logs.emplace_back(a, b, c);
        v.push_back(b);
        break;
      case 1:
        logs.emplace_back(a, b, c+1);
        v.push_back(b);
        v.push_back(c+1);
        break;
    }
  }
  map<int, size_t> w = compress(v);
  BIT<i64> tree(w.size());
  i64 res = 0;
  for(size_t i=0; i<Q; ++i) {
    auto[a, b, c] = logs[i];
    switch(a) {
      case 0:
        tree.add(w[b], c);
        break;
      case 1:
        res += tree.sum(w[c]) - tree.sum(w[b]);
        break;
    }
  }
  printf("%ld\n", res);
  return 0;
}
0