結果
問題 | No.1234 典型RMQ |
ユーザー | iqueue02 |
提出日時 | 2020-09-18 22:45:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,692 bytes |
コンパイル時間 | 2,300 ms |
コンパイル使用メモリ | 209,292 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-07-20 00:53:39 |
合計ジャッジ時間 | 9,874 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < (n);i++) #define sz(x) int(x.size()) typedef long long ll; typedef long double ld; typedef pair<int,int> P; constexpr ll INF = (1LL << 63); template <typename T> struct LazySegmentTree { int n; vector<T> node, lazy; LazySegmentTree (int sz, T init = 0) { n = 1; while (n < sz) n <<= 1; node.assign(2*n, init); lazy.assign(2*n, 0); /*区間加算の時は0*/ } void eval (int k) { if (lazy[k] == 0) return ; node[k] += lazy[k]; /*区間加算に注意*/ if (k < n) { lazy[2*k+1] = lazy[k]; lazy[2*k+2] = lazy[k]; } lazy[k] = 0; } void update(int a, int b, T x, int k = 0, int l = 0, int r = -1) { eval(k); if (r < 0) r = n; if (b <= l || r <= a) return ; if (a <= l && r <= b) { lazy[k] = x; eval(k); } else { update(a, b, x, 2*k+1, l, (r+l)/2); update(a, b, x, 2*k+2, (r+l)/2, r); node[k] = min(node[2*k+1], node[2*k+2]); } } T query(int a, int b, int k = 0, int l = 0, int r = -1) { eval(k); if (r < 0) r = n; if (r <= a || b <= l) return INF; if (a <= l && r <= b) return node[k]; T vl = query(a, b, 2*k+1, l, (l+r)/2); T vr = query(a, b, 2*k+2, (l+r)/2, r); return min(vl, vr); } }; int main() { int n; cin >> n; LazySegmentTree<ll> seg(n, 0); rep(i,n) { ll a; cin >> a; seg.update(i, i + 1, a); } int q; cin >> q; while (q--) { int k, l, r, c; cin >> k >> l >> r >> c; l--; if (k == 1) seg.update(l, r, c); else { //cout << "ans "; cout << seg.query(l, r) << endl; } } return 0; }