結果

問題 No.1234 典型RMQ
ユーザー ooaiuooaiu
提出日時 2024-12-10 17:05:31
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 998 bytes
コンパイル時間 2,827 ms
コンパイル使用メモリ 250,736 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-12-10 17:05:40
合計ジャッジ時間 8,472 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 74 ms
6,820 KB
testcase_07 AC 56 ms
5,248 KB
testcase_08 AC 75 ms
6,912 KB
testcase_09 AC 68 ms
5,248 KB
testcase_10 AC 75 ms
6,912 KB
testcase_11 AC 73 ms
6,656 KB
testcase_12 AC 66 ms
5,248 KB
testcase_13 AC 61 ms
5,248 KB
testcase_14 AC 64 ms
5,248 KB
testcase_15 AC 63 ms
5,248 KB
testcase_16 AC 73 ms
6,820 KB
testcase_17 AC 65 ms
5,248 KB
testcase_18 AC 52 ms
5,248 KB
testcase_19 AC 80 ms
7,040 KB
testcase_20 AC 61 ms
7,168 KB
testcase_21 AC 74 ms
6,912 KB
testcase_22 AC 69 ms
7,168 KB
testcase_23 AC 68 ms
7,040 KB
testcase_24 AC 68 ms
7,040 KB
testcase_25 AC 74 ms
7,040 KB
testcase_26 AC 68 ms
7,040 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

#include <atcoder/lazysegtree>
using S = int64_t;
S op(S a, S b) { return std::min(a, b); }
constexpr S inf = std::numeric_limits<S>::max();
S e() { return inf; }
using F = int64_t;
F id() { return 0; }
F composition(F f, F g) { return f + g; }
S mapping(F f, S x) { return f + x; }

void solve() {
    int N;
    cin >> N;
    vector<S> A(N);
    for (int i = 0; i < N; i++) cin >> A[i];
    int Q;
    cin >> Q;
    atcoder::lazy_segtree<S, op, e, F, mapping, composition, id> seg(A);
    while (Q--) {
        int k, l, r, c;
        cin >> k >> l >> r >> c;
        l--;
        if (k == 1) {
            seg.apply(l, r, c);
        } else {
            cout << seg.prod(l, r) << '\n';
        }
    }
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0