結果
問題 | No.878 Range High-Element Query |
ユーザー | ooaiu |
提出日時 | 2024-11-14 13:31:34 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,478 bytes |
コンパイル時間 | 4,250 ms |
コンパイル使用メモリ | 293,100 KB |
実行使用メモリ | 16,840 KB |
最終ジャッジ日時 | 2024-11-14 13:31:45 |
合計ジャッジ時間 | 9,491 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
ソースコード
#ifndef LOCAL #include <bits/stdc++.h> using namespace std; #define debug(...) (void(0)) #else #include "algo/debug.h" #endif #include <atcoder/segtree> using S = long long; S op(S a, S b) { return a + b; } S e() { return 0; } void solve() { int N, Q; cin >> N >> Q; vector<S> A(N); for (int i = 0; i < N; i++) cin >> A[i]; set<pair<int, int>> st; for (int i = 0; i < N; i++) st.insert({A[i], i}); vector<array<long long, 4>> Qs(Q); for (int i = 0; i < Q; i++) { int t; cin >> t; int l, r, x; cin >> l >> r >> x; Qs[i] = {x, l, r, i}; } debug(Qs); // cnt, sum atcoder::segtree<S, op, e> cnt(N); atcoder::segtree<S, op, e> sum(A); sort(Qs.begin(), Qs.end()); auto Query = [&](int l, int r, long long x) -> S { l--; return x * cnt.prod(l, r) + sum.prod(l, r) - x * (r - l); }; vector<S> ans(Q); for (int ii = 0; ii < Q; ii++) { auto [x, l, r, i] = Qs[ii]; while (!st.empty() && st.begin()->first <= x) { auto it = st.begin(); auto [val, idx] = *it; st.erase(it); cnt.set(idx, 1); sum.set(idx, 0); } ans[i] = Query(l, r, x); } for (int i = 0; i < Q; i++) cout << ans[i] << endl; } int main() { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); int tt = 1; // std::cin >> tt; while (tt--) { solve(); } }