結果

問題 No.1099 Range Square Sum
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-06-10 17:18:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 1,303 bytes
コンパイル時間 4,222 ms
コンパイル使用メモリ 269,484 KB
実行使用メモリ 23,940 KB
最終ジャッジ日時 2024-06-10 17:19:03
合計ジャッジ時間 9,723 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,812 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 4 ms
6,944 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 3 ms
6,944 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 292 ms
23,788 KB
testcase_22 AC 293 ms
23,792 KB
testcase_23 AC 311 ms
23,768 KB
testcase_24 AC 292 ms
23,824 KB
testcase_25 AC 286 ms
23,816 KB
testcase_26 AC 261 ms
23,768 KB
testcase_27 AC 288 ms
23,908 KB
testcase_28 AC 265 ms
23,788 KB
testcase_29 AC 259 ms
23,888 KB
testcase_30 AC 306 ms
23,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;

struct S {
    long long sum2, sum1, size;
    
    S(long long sum2_, long long sum1_, long long size_) : 
    sum2(sum2_), sum1(sum1_), size(size_) {}
};

S op(S l, S r) {
    S res(l.sum2 + r.sum2, l.sum1 + r.sum1, l.size + r.size);
    return res;
}

S e() {
    S res(0LL, 0LL, 1LL);
    return res;
}

S mapping(long long x, S s) {
    S res(s.sum2 + 2LL * x * s.sum1 + s.size * x * x, s.sum1 + s.size * x, s.size);
    return res;
}

long long composition(long long f, long long g) {
    return f + g;
}

long long id() {
    return 0LL;
}

int main() {
    int n;
    cin >> n;
    vector<long long> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    lazy_segtree<S, op, e, long long, mapping, composition, id> seg(n);
    for (int i = 0; i < n; i++) {
        seg.set(i, {a[i] * a[i], a[i], 1LL});
    }
    int q;
    cin >> q;
    while (q--) {
        int t;
        cin >> t;
        if (t == 1) {
            int l, r;
            long long x;
            cin >> l >> r >> x;
            l--;
            seg.apply(l, r, x);
        } else {
            int l, r;
            cin >> l >> r;
            l--;
            cout << seg.prod(l, r).sum2 << endl;
        }
    }
}
0