結果
問題 | No.877 Range ReLU Query |
ユーザー | Ricky_pon |
提出日時 | 2020-09-18 20:39:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,374 bytes |
コンパイル時間 | 2,299 ms |
コンパイル使用メモリ | 204,924 KB |
実行使用メモリ | 6,016 KB |
最終ジャッジ日時 | 2024-11-08 10:31:15 |
合計ジャッジ時間 | 14,840 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 4 ms
5,248 KB |
testcase_02 | AC | 4 ms
5,248 KB |
testcase_03 | AC | 4 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | AC | 4 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 3 ms
5,248 KB |
testcase_11 | AC | 857 ms
5,376 KB |
testcase_12 | AC | 724 ms
5,376 KB |
testcase_13 | AC | 515 ms
5,248 KB |
testcase_14 | AC | 529 ms
5,248 KB |
testcase_15 | AC | 991 ms
5,888 KB |
testcase_16 | AC | 1,300 ms
5,760 KB |
testcase_17 | AC | 1,345 ms
6,016 KB |
testcase_18 | AC | 1,336 ms
5,888 KB |
testcase_19 | AC | 1,278 ms
5,888 KB |
testcase_20 | TLE | - |
ソースコード
#include <bits/stdc++.h> #define For(i, a, b) for (int(i) = (int)(a); (i) < (int)(b); ++(i)) #define rFor(i, a, b) for (int(i) = (int)(a)-1; (i) >= (int)(b); --(i)) #define rep(i, n) For((i), 0, (n)) #define rrep(i, n) rFor((i), (n), 0) #define fi first #define se second using namespace std; typedef long long lint; typedef unsigned long long ulint; typedef pair<int, int> pii; typedef pair<lint, lint> pll; template <class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; } template <class T> bool chmin(T &a, const T &b) { if (a > b) { a = b; return true; } return false; } template <class T> T div_floor(T a, T b) { if (b < 0) a *= -1, b *= -1; return a >= 0 ? a / b : (a + 1) / b - 1; } template <class T> T div_ceil(T a, T b) { if (b < 0) a *= -1, b *= -1; return a > 0 ? (a - 1) / b + 1 : a / b; } constexpr lint mod = 1000000007; constexpr lint INF = mod * mod; constexpr int MAX = 100010; int width = 300; lint asum[350 * 300]; pair<lint, int> a[350 * 300]; lint get_sum(int k, lint x) { int i = upper_bound(a + k * width, a + (k + 1) * width, make_pair(x, -1)) - a; return asum[(k + 1) * width] - asum[i] - x * ((k + 1) * width - i); } lint get_backet_sum(int k, lint x, int l, int r) { lint ret = 0; For(i, k * width, (k + 1) * width) if (l <= a[i].se && a[i].se < r) { ret += max(0LL, a[i].fi - x); } return ret; } int main() { int n, q; scanf("%d%d", &n, &q); int num = div_ceil(n, width); rep(i, num * width) a[i] = {-1, -1}; rep(i, n) { scanf("%lld", &a[i].fi); a[i].se = i; } rep(k, num) sort(a + k * width, a + (k + 1) * width); rep(i, num * width) asum[i + 1] = asum[i] + a[i].fi; rep(_, q) { int t, l, r; lint x; scanf("%d%d%d%lld", &t, &l, &r, &x); --l; lint ans = 0; For(k, div_ceil(l, width), div_floor(r, width)) { ans += get_sum(k, x); } if (l % width != 0 || div_floor(l, width) == div_floor(r, width)) { ans += get_backet_sum(div_floor(l, width), x, l, r); } if (r % width != 0 && div_floor(l, width) != div_floor(r, width)) { ans += get_backet_sum(div_floor(r, width), x, l, r); } printf("%lld\n", ans); } }