結果
問題 | No.789 範囲の合計 |
ユーザー | pekempey |
提出日時 | 2019-02-21 08:04:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 808 bytes |
コンパイル時間 | 484 ms |
コンパイル使用メモリ | 54,144 KB |
実行使用メモリ | 93,056 KB |
最終ジャッジ日時 | 2024-11-16 05:25:22 |
合計ジャッジ時間 | 13,188 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 63 ms
5,248 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 814 ms
80,640 KB |
testcase_06 | TLE | - |
testcase_07 | AC | 50 ms
5,248 KB |
testcase_08 | AC | 758 ms
65,664 KB |
testcase_09 | AC | 666 ms
60,032 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
ソースコード
#include <stdio.h> #include <map> #define Z (1 << 30) std::map<int, long long> S; void update(int k, int v) { k += Z; for (int i = 0; i <= 30; i++) S[k >> i] += v; } long long query(int l, int r) { l += Z; r += Z; long long o = 0; while (l <= r) { if ((l & 1) == 1) o += S[l++]; if ((r & 1) == 0) o += S[r--]; l >>= 1; r >>= 1; } return o; } int main() { int N; scanf("%d", &N); long long ans = 0; while (N--) { int t; scanf("%d", &t); if (t == 0) { int x, y; scanf("%d %d", &x, &y); update(x, y); } else { int l, r; scanf("%d %d", &l, &r); ans += query(l, r); } } printf("%lld\n", ans); return 0; }