結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 244 ms
6,912 KB
testcase_07 AC 202 ms
6,820 KB
testcase_08 AC 256 ms
7,040 KB
testcase_09 AC 229 ms
6,816 KB
testcase_10 AC 254 ms
7,040 KB
testcase_11 AC 240 ms
6,912 KB
testcase_12 AC 229 ms
6,820 KB
testcase_13 AC 207 ms
6,820 KB
testcase_14 AC 229 ms
6,820 KB
testcase_15 AC 220 ms
6,816 KB
testcase_16 AC 251 ms
6,912 KB
testcase_17 AC 229 ms
6,816 KB
testcase_18 AC 199 ms
6,820 KB
testcase_19 AC 257 ms
7,168 KB
testcase_20 AC 207 ms
7,040 KB
testcase_21 AC 239 ms
6,820 KB
testcase_22 AC 217 ms
7,040 KB
testcase_23 AC 221 ms
7,168 KB
testcase_24 AC 223 ms
7,040 KB
testcase_25 AC 227 ms
7,168 KB
testcase_26 AC 227 ms
7,040 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 2 ms
6,816 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