結果

問題 No.789 範囲の合計
ユーザー yuppe19 😺yuppe19 😺
提出日時 2019-11-03 17:19:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 223 ms / 1,000 ms
コード長 1,546 bytes
コンパイル時間 941 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 14,372 KB
最終ジャッジ日時 2024-09-14 23:33:20
合計ジャッジ時間 3,364 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 197 ms
13,348 KB
testcase_03 AC 57 ms
5,376 KB
testcase_04 AC 178 ms
12,920 KB
testcase_05 AC 126 ms
13,556 KB
testcase_06 AC 145 ms
13,352 KB
testcase_07 AC 43 ms
5,376 KB
testcase_08 AC 91 ms
8,852 KB
testcase_09 AC 84 ms
7,976 KB
testcase_10 AC 223 ms
14,372 KB
testcase_11 AC 163 ms
13,008 KB
testcase_12 AC 149 ms
13,008 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, int> compress(const vector<T> &v) {
  size_t n = v.size();
  vector<T> mp = v;
  sort(mp.begin(), mp.end()); mp.erase(unique(mp.begin(), mp.end()), mp.end());
  map<T, int> w;
  for(size_t i=0; i<n; ++i) {
    w[v[i]] = static_cast<int>(distance(mp.begin(), lower_bound(mp.begin(), mp.end(), v[i])));
  }
  return w;
}

template <class T>
class BIT {
  int N;
  vector<T> dat;
 public:
  explicit BIT(int n) : N(n+2), dat(N) {}
  void add(int k, T x) {
    for(int i=k+1; i<N; i+=i&-i) { dat[i] += x; }
  }
  T sum(int k) {
    T res = 0;
    for(int 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, int> w = compress(v);
  BIT<i64> tree(static_cast<int>(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