結果

問題 No.1234 典型RMQ
ユーザー V_Melville
提出日時 2022-01-01 19:11:34
言語 C++23
(gcc 13.3.0 + boost 1.87.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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

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