結果

問題 No.789 範囲の合計
ユーザー nebukuro09nebukuro09
提出日時 2019-02-08 22:16:41
言語 D
(dmd 2.107.1)
結果
AC  
実行時間 229 ms / 1,000 ms
コード長 1,910 bytes
コンパイル時間 743 ms
コンパイル使用メモリ 114,000 KB
実行使用メモリ 32,820 KB
最終ジャッジ日時 2023-09-03 23:37:43
合計ジャッジ時間 4,781 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 210 ms
32,056 KB
testcase_03 AC 115 ms
14,172 KB
testcase_04 AC 197 ms
30,596 KB
testcase_05 AC 190 ms
31,704 KB
testcase_06 AC 193 ms
32,820 KB
testcase_07 AC 104 ms
13,600 KB
testcase_08 AC 143 ms
19,124 KB
testcase_09 AC 139 ms
18,336 KB
testcase_10 AC 229 ms
32,192 KB
testcase_11 AC 193 ms
30,904 KB
testcase_12 AC 194 ms
31,568 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, std.bitmanip;

void main() {
    auto N = readln.chomp.to!int;
    auto Q = N.iota.map!(_ => readln.split.map!(to!long).array).array;

    long[] B;
    foreach (q; Q) if (q[0] == 1) B ~= q[1], B ~= q[2]; else B ~= q[1];
    B = B.sort().uniq.array;

    int[long] mp;
    foreach (i, b; B) mp[b] = i.to!int;

    auto st = new SegmentTree!(long, (a,b)=>a+b, 0L)(B.length.to!int);
    long ans = 0;

    foreach (q; Q) {
        if (q[0] == 0) {
            auto x = mp[q[1]];
            auto y = q[2];
            st.add(x, y);
        } else {
            auto l = mp[q[1]];
            auto r = mp[q[2]];
            ans += st.query(l, r);
        }
    }

    ans.writeln;
}


class SegmentTree(T, alias op, T e) {
    T[] table;
    int size;
    int offset;

    this(int n) {
        size = 1;
        while (size <= n) size <<= 1;
        size <<= 1;
        table = new T[](size);
        fill(table, e);
        offset = size / 2;
    }

    void assign(int pos, T val) {
        pos += offset;
        table[pos] = val;
        while (pos > 1) {
            pos /= 2;
            table[pos] = op(table[pos*2], table[pos*2+1]);
        }
    }

    void add(int pos, T val) {
        pos += offset;
        table[pos] += val;
        while (pos > 1) {
            pos /= 2;
            table[pos] = op(table[pos*2], table[pos*2+1]);
        }
    }

    T query(int l, int r) {
        return query(l, r, 1, 0, offset-1);
    }

    T query(int l, int r, int i, int a, int b) {
        if (b < l || r < a) {
            return e;
        } else if (l <= a && b <= r) {
            return table[i];
        } else {
            return op(query(l, r, i*2, a, (a+b)/2), query(l, r, i*2+1, (a+b)/2+1, b));
        }
    }
}
0