結果

問題 No.1234 典型RMQ
ユーザー seiyu_kyoproseiyu_kyopro
提出日時 2021-03-29 05:23:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,385 bytes
コンパイル時間 3,122 ms
コンパイル使用メモリ 168,228 KB
実行使用メモリ 8,380 KB
最終ジャッジ日時 2024-05-06 23:05:22
合計ジャッジ時間 11,754 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iomanip>
#include <array>
#include <bitset>
#include <cassert>
#include <cmath>
#include <cstdio>
#include <deque>
#include <functional>
#include <iostream>
#include <iterator>
#include <map>
#include <queue>
#include <set>
#include <string>
#include <sstream>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>
using namespace std;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
#define GET_MACRO(_1, _2, _3, NAME, ...) NAME
#define _rep(i, n) _rep2(i, 0, n)
#define _rep2(i, a, b) for(int i = (int)(a); i < (int)(b); i++)
#define rep(...) GET_MACRO(__VA_ARGS__, _rep2, _rep)(__VA_ARGS__)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
using i64 = long long;
template<class T>
bool chmin(T& a, const T& b) { return (b < a) ? (a = b, true) : false; }
template<class T>
bool chmax(T& a, const T& b) { return (b > a) ? (a = b, true) : false; }

template<typename T>istream& operator>>(istream&i,vector<T>&v){rep(j,v.size())i>>v[j];return i;}
template<typename T>string join(vector<T>&v){stringstream s;rep(i,v.size())s<<' '<<v[i];return s.str().substr(1);}
template<typename T>ostream& operator<<(ostream&o,vector<T>&v){if(v.size())o<<join(v);return o;}
template<typename T>string join(vector<vector<T>>&vv){string s="\n";rep(i,vv.size())s+=join(vv[i])+"\n";return s;}
template<typename T>ostream& operator<<(ostream&o,vector<vector<T>>&vv){if(vv.size())o<<join(vv);return o;}

using S = i64;
using F = i64;

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

S e()
{
    return 2e16;
}

S mapping(F f, S x)
{
    return f + x;
}

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

F id()
{
    return 0;
}

int main()
{
    int n;
    cin >> n;

    vector<S> a(n);
    cin >> a;

    lazy_segtree<S, op, e, F, mapping, composition, id> seg(a);

    int q;
    cin >> q;

    vector<S> ans;
    rep(i, q)
    {
        int k, l, r;
        S c;
        cin >> k >> l >> r >> c;
        l--;
        r--;
        if (k == 1)
        {
            // 区間加算をする
            seg.apply(l, r + 1, c);
        }
        else
        {
            // 区間最小値取得
            cout << l << " " << r + 1 << endl;
            ans.push_back(seg.prod(l, r + 1));
        }
    }

    

    for(auto u : ans)
        cout << u << endl;

    return 0;
}
0