結果
問題 | No.877 Range ReLU Query |
ユーザー | merom686 |
提出日時 | 2019-09-06 22:54:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,705 bytes |
コンパイル時間 | 1,211 ms |
コンパイル使用メモリ | 93,724 KB |
実行使用メモリ | 8,828 KB |
最終ジャッジ日時 | 2024-06-24 20:31:24 |
合計ジャッジ時間 | 4,368 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | RE | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 3 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 3 ms
6,944 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 79 ms
8,576 KB |
testcase_16 | AC | 77 ms
8,320 KB |
testcase_17 | AC | 80 ms
8,448 KB |
testcase_18 | AC | 79 ms
8,576 KB |
testcase_19 | AC | 78 ms
8,704 KB |
testcase_20 | AC | 78 ms
8,828 KB |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <functional> #include <array> #include <cstdio> #include <cstring> #include <cmath> using namespace std; using ll = long long; struct P { P &operator+=(const P &p) { s += p.s; c += p.c; return *this; } ll s; int c; }; struct BIT { BIT(int n) : b(n + 1), n(n) {} void add(int i, P v) { for (int k = i + 1; k <= n; k += k & -k) b[k] += v; } P sum(int k) { P s = { 0, 0 }; for (; k > 0; k -= k & -k) s += b[k]; return s; } vector<P> b; int n; }; struct Q { bool operator<(const Q &q) const { return x > q.x; } ll s; int l, r, x, h; }; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m; cin >> n >> m; vector<pair<int, int>> a(n); for (int i = 0; i < n; i++) { cin >> a[i].first; a[i].second = i; } sort(a.begin(), a.end(), greater<>()); vector<Q> q(m); for (int h = 0; h < m; h++) { int t, l, r, x; cin >> t >> l >> r >> x; l--; q[h] = { 0, l, r, x, h }; } sort(q.begin(), q.end()); BIT bt(n); int i = 0; for (int h = 0; h < m; h++) { int x = q[h].x; for (; i < n && a[i].first > x; i++) { bt.add(a[i].second, { a[i].first, 1 }); } P p0 = bt.sum(q[h].l); P p1 = bt.sum(q[h].r); q[h].s = (p1.s - p0.s) - (p1.c - p0.c) * (ll)x; } vector<ll> r(n); for (int h = 0; h < m; h++) { r[q[h].h] = q[h].s; } for (int h = 0; h < m; h++) { cout << r[h] << '\n'; } return 0; }