結果

問題 No.877 Range ReLU Query
ユーザー nebukuro09nebukuro09
提出日時 2019-09-08 11:10:33
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 345 ms / 2,000 ms
コード長 2,110 bytes
コンパイル時間 1,036 ms
コンパイル使用メモリ 123,360 KB
実行使用メモリ 33,356 KB
最終ジャッジ日時 2023-09-04 02:41:56
合計ジャッジ時間 6,138 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 3 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 3 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 3 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 334 ms
28,332 KB
testcase_12 AC 295 ms
24,284 KB
testcase_13 AC 228 ms
21,684 KB
testcase_14 AC 246 ms
21,988 KB
testcase_15 AC 345 ms
28,136 KB
testcase_16 AC 322 ms
26,456 KB
testcase_17 AC 335 ms
27,068 KB
testcase_18 AC 331 ms
26,840 KB
testcase_19 AC 258 ms
32,764 KB
testcase_20 AC 316 ms
33,356 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, core.stdc.stdio;

void main() {
    auto s = readln.split.map!(to!int);
    auto N = s[0];
    auto Q = s[1];
    auto A = readln.split.map!(to!long).array;

    auto B = N.iota.map!(i => tuple(A[i], i)).array;
    B.sort!"a[0] > b[0]";

    auto X = Q.iota.map!(i => readln.split.map!(to!int).array ~ i).array;
    X.sort!"a[3] > b[3]";

    auto st = new SegmentTree!(long, (a,b)=>a+b, 0L)(N);
    auto st_cnt = new SegmentTree!(long, (a,b)=>a+b, 0L)(N);
    auto ans = new long[](Q);
    int p = 0;

    foreach (x; X) {
        auto il = x[1] - 1;
        auto ir = x[2] - 1;
        auto v = x[3].to!long;
        auto idx = x[4];
        while (p < N && B[p][0] > v) {
            st.assign(B[p][1], B[p][0]);
            st_cnt.assign(B[p][1], 1L);
            p += 1;
        }
        ans[idx] = st.query(il, ir) - v * st_cnt.query(il, ir);
    }

    ans.each!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