結果
問題 | No.789 範囲の合計 |
ユーザー | merom686 |
提出日時 | 2019-02-08 22:43:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 53 ms / 1,000 ms |
コード長 | 1,422 bytes |
コンパイル時間 | 879 ms |
コンパイル使用メモリ | 84,076 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-01 11:40:08 |
合計ジャッジ時間 | 2,294 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 50 ms
6,944 KB |
testcase_03 | AC | 45 ms
6,940 KB |
testcase_04 | AC | 46 ms
6,940 KB |
testcase_05 | AC | 44 ms
6,944 KB |
testcase_06 | AC | 48 ms
6,940 KB |
testcase_07 | AC | 41 ms
6,944 KB |
testcase_08 | AC | 43 ms
6,944 KB |
testcase_09 | AC | 41 ms
6,948 KB |
testcase_10 | AC | 53 ms
6,940 KB |
testcase_11 | AC | 47 ms
6,944 KB |
testcase_12 | AC | 47 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <cstdio> #include <cstring> #include <cmath> using namespace std; using ll = long long; struct P { int t, x, y; }; struct BIT { BIT(int n) : b(n + 1), n(n) {} void add(int i, int v) { for (int k = i + 1; k <= n; k += k & -k) b[k] += v; } int sum(int k) { int s = 0; for (; k > 0; k -= k & -k) s += b[k]; return s; } vector<int> b; int n; }; int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; vector<P> p(n); int m = n; for (int i = 0; i < n; i++) { cin >> p[i].t >> p[i].x >> p[i].y; if (p[i].t == 1) p[i].y++, m++; } vector<pair<int, int>> t(m); int j = 0; for (int i = 0; i < n; i++) { t[j++] = { p[i].x, i * 2 }; if (p[i].t == 1) t[j++] = { p[i].y, i * 2 + 1 }; } sort(t.begin(), t.end()); int k = 0; for (int i = 0; i < m; i++) { if (i > 0 && t[i].first != t[i - 1].first) k++; P& q = p[t[i].second / 2]; if (t[i].second % 2 == 0) q.x = k; else q.y = k; } k++; BIT bt(k); ll ans = 0; for (int i = 0; i < n; i++) { if (p[i].t == 0) { bt.add(p[i].x, p[i].y); } else { ans += bt.sum(p[i].y) - bt.sum(p[i].x); } } cout << ans << endl; return 0; }