結果

問題 No.1234 典型RMQ
ユーザー V_MelvilleV_Melville
提出日時 2022-01-01 19:11:34
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 781 bytes
コンパイル時間 5,854 ms
コンパイル使用メモリ 336,864 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-04-18 17:15:40
合計ジャッジ時間 14,277 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 256 ms
6,940 KB
testcase_07 AC 210 ms
6,940 KB
testcase_08 AC 269 ms
7,040 KB
testcase_09 AC 239 ms
6,940 KB
testcase_10 AC 260 ms
7,040 KB
testcase_11 AC 255 ms
6,992 KB
testcase_12 AC 237 ms
6,940 KB
testcase_13 AC 210 ms
6,940 KB
testcase_14 AC 234 ms
6,944 KB
testcase_15 AC 232 ms
6,940 KB
testcase_16 AC 253 ms
7,040 KB
testcase_17 AC 236 ms
6,940 KB
testcase_18 AC 204 ms
6,940 KB
testcase_19 AC 265 ms
7,168 KB
testcase_20 AC 207 ms
7,168 KB
testcase_21 AC 254 ms
6,940 KB
testcase_22 AC 227 ms
7,040 KB
testcase_23 AC 224 ms
7,040 KB
testcase_24 AC 224 ms
7,040 KB
testcase_25 AC 224 ms
7,040 KB
testcase_26 AC 223 ms
7,040 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 1 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)

using std::cin;
using std::cout;
using std::min;
using std::vector;
using ll = long long;

const ll INF = 1e18;

ll op(ll a, ll b) { return min(a, b); }

ll e() { return INF; }

ll mapping(ll f, ll x) { return f + x; }

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

ll id() { return 0; }

int main() {
	int n;
	cin >> n;
	
	vector<ll> a(n);
	rep(i, n) cin >> a[i];
	
	lazy_segtree<ll, op, e, ll, mapping, composition, id> t(a);
	
	int q;
	cin >> q;
	rep(qi, q) {
		int k, l, r, c;
		cin >> k >> l >> r >> c;
		--l;
		if (k == 1) {
			t.apply(l, r, c);
		}
		else {
			cout << t.prod(l, r) << '\n';
		}
	}
	
	return 0;
}
0