結果

問題 No.877 Range ReLU Query
ユーザー Coki628Coki628
提出日時 2020-12-01 03:02:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,556 ms / 2,000 ms
コード長 4,820 bytes
コンパイル時間 2,899 ms
コンパイル使用メモリ 212,392 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-04-25 22:27:48
合計ジャッジ時間 11,515 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 580 ms
8,320 KB
testcase_12 AC 485 ms
8,192 KB
testcase_13 AC 343 ms
6,940 KB
testcase_14 AC 349 ms
6,940 KB
testcase_15 AC 641 ms
9,216 KB
testcase_16 AC 880 ms
9,088 KB
testcase_17 AC 901 ms
9,088 KB
testcase_18 AC 886 ms
9,088 KB
testcase_19 AC 940 ms
9,216 KB
testcase_20 AC 1,556 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// #pragma GCC target("avx2")
// #pragma GCC optimize("O3")
// #pragma GCC optimize("unroll-loops")

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
using ld = long double;
using pll = pair<ll, ll>;
using pii = pair<int, int>;
using vvl = vector<vector<ll>>;
using vvi = vector<vector<int>>;
using vvpll = vector<vector<pll>>;
#define rep(i, a, b) for (ll i=(a); i<(b); i++)
#define rrep(i, a, b) for (ll i=(a); i>(b); i--)
#define pb push_back
#define tostr to_string
#define ALL(A) A.begin(), A.end()
constexpr ll INF = LONG_LONG_MAX;
constexpr ll MOD = 1000000007;

template<typename T> vector<vector<T>> list2d(int N, int M, T init) { vector<vector<T>> res(N, vector<T>(M, init)); return res; }
template<typename T> vector<vector<vector<T>>> list3d(int N, int M, int L, T init) { vector<vector<vector<T>>> res(N, vector<vector<T>>(M, vector<T>(L, init))); return res; }

void print(ld out) { cout << fixed << setprecision(15) << out << '\n'; }
void print(double out) { cout << fixed << setprecision(15) << out << '\n'; }
template<typename T> void print(T out) { cout << out << '\n'; }
template<typename T1, typename T2> void print(pair<T1, T2> out) { cout << out.first << ' ' << out.second << '\n'; }
template<typename T> void print(vector<T> A) { rep(i, 0, A.size()) { cout << A[i]; cout << (i == A.size()-1 ? '\n' : ' '); } }
template<typename T> void print(set<T> S) { vector<T> A(S.begin(), S.end()); print(A); }

void Yes() { print("Yes"); }
void No() { print("No"); }
void YES() { print("YES"); }
void NO() { print("NO"); }

template<typename T> inline bool chmax(T &x, T y) { return (y > x) ? x = y, true : false; }
template<typename T> inline bool chmin(T &x, T y) { return (y < x) ? x = y, true : false; }

ll sum(vector<ll> A) { ll res = 0; for (ll a: A) res += a; return res; }
ll max(vector<ll> A) { ll res = -INF; for (ll a: A) chmax(res, a); return res; }
ll min(vector<ll> A) { ll res = INF; for (ll a: A) chmin(res, a); return res; }

ll toint(string s) { ll res = 0; for (char c : s) { res *= 10; res += (c - '0'); } return res; }
int toint(char num) { return num - '0'; }
char tochar(int num) { return '0' + num; }

inline ll pow(int x, ll n) { ll res = 1; rep(_, 0, n) res *= x; return res; }
inline ll pow(ll x, ll n, int mod) { ll res = 1; while (n > 0) { if (n & 1) { res = (res * x) % mod; } x = (x * x) % mod; n >>= 1; } return res; }

inline ll floor(ll a, ll b) { if (a < 0) { return (a-b+1) / b; } else { return a / b; } }
inline ll ceil(ll a, ll b) { if (a >= 0) { return (a+b-1) / b; } else { return a / b; } }
pll divmod(ll a, ll b) { ll d = a / b; ll m = a % b; return {d, m}; }

int popcount(ll S) { return __builtin_popcountll(S); }
ll gcd(ll a, ll b) { return __gcd(a, b); }

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);

    ll N, Q;
    cin >> N >> Q;
    vector<ll> A(N);
    rep(i, 0, N) cin >> A[i];

    ll D = ceil(sqrt(N));
    vvpll bucket(D);
    vvl sorted(D), acc(D);
    vector<ll> sm(D);
    rep(i, 0, N) {
        bucket[i/D].pb({A[i], i});
        sorted[i/D].pb(A[i]);
        acc[i/D].pb(A[i]);
    }
    rep(i, 0, D) {
        acc[i].pb(0);
        sort(ALL(sorted[i]));
        sort(ALL(acc[i]));
        ll M = acc[i].size();
        rep(j, 1, M) {
            acc[i][j] += acc[i][j-1];
        }
        sm[i] = sum(sorted[i]);
    }

    rep(_, 0, Q) {
        ll op, l, r, x;
        cin >> op >> l >> r >> x;
        l--;
        ll res = 0;
        ll ld = l / D;
        ll rd = r / D;
        // 左端と右端が同じ区間なら重複がないようにする
        if (ld == rd) {
            for (auto [a, i] : bucket[ld]) {
                if (l <= i and i < r) res += max(a-x, 0LL);
            }
        } else {
            // 左右の端は愚直に見る
            ll M = bucket[ld].size();
            rrep(i, M-1, -1) {
                auto [a, j] = bucket[ld][i];
                if (l <= j) {
                    res += max(a-x, 0LL);
                } else {
                    break;
                }
            }
            M = bucket[rd].size();
            rep(i, 0, M) {
                auto [a, j] = bucket[rd][i];
                if (j < r) {
                    res += max(a-x, 0LL);
                } else {
                    break;
                }
            }
            // 全部を含む区間はまとめて処理
            rep(i, ld+1, rd) {
                ll M = sorted[i].size();
                ll j = lower_bound(ALL(sorted[i]), x) - sorted[i].begin();
                // 区間の総和から
                // 「x以上あるので全部(x*区間長)引ける部分 + x未満なのでその部分の区間和」
                // を引く
                res += sm[i] - (x*(M-j)+acc[i][j]);
            }
        }
        print(res);
    }
    return 0;
}
0