結果
問題 | No.2065 Sum of Min |
ユーザー | srjywrdnprkt |
提出日時 | 2023-05-05 20:28:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 615 ms / 2,000 ms |
コード長 | 2,017 bytes |
コンパイル時間 | 1,500 ms |
コンパイル使用メモリ | 128,392 KB |
実行使用メモリ | 29,084 KB |
最終ジャッジ日時 | 2024-05-02 14:37:30 |
合計ジャッジ時間 | 13,240 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
8,064 KB |
testcase_01 | AC | 4 ms
8,064 KB |
testcase_02 | AC | 5 ms
8,064 KB |
testcase_03 | AC | 5 ms
7,936 KB |
testcase_04 | AC | 374 ms
22,932 KB |
testcase_05 | AC | 363 ms
22,812 KB |
testcase_06 | AC | 253 ms
17,300 KB |
testcase_07 | AC | 279 ms
17,304 KB |
testcase_08 | AC | 291 ms
17,304 KB |
testcase_09 | AC | 508 ms
28,952 KB |
testcase_10 | AC | 483 ms
28,952 KB |
testcase_11 | AC | 507 ms
28,956 KB |
testcase_12 | AC | 615 ms
29,076 KB |
testcase_13 | AC | 593 ms
28,956 KB |
testcase_14 | AC | 614 ms
29,080 KB |
testcase_15 | AC | 538 ms
28,948 KB |
testcase_16 | AC | 531 ms
28,952 KB |
testcase_17 | AC | 535 ms
29,076 KB |
testcase_18 | AC | 528 ms
28,956 KB |
testcase_19 | AC | 540 ms
28,952 KB |
testcase_20 | AC | 538 ms
29,080 KB |
testcase_21 | AC | 583 ms
29,084 KB |
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> #include <complex> #include <cassert> using namespace std; using ll = long long; template <typename T> map<T, T> compress(vector<T> &A){ map<T, T> comp; int N = A.size(), i=0; for (int i=0; i<N; i++) comp[A[i]]; for (auto &e : comp){ e.second = i; i++; } return comp; } template<class T> struct BIT { vector<T> bit; long long N; T P; BIT (long long n, T p = 0){ N = n; P = p; bit.resize(N); } void add(long long loc, T val){ loc++; while(loc <= N){ bit[loc-1] += val; if (P) bit[loc-1] %= P; loc += loc & -loc; } } long long sum(long long l, long long r){ T res = _sum(r) - _sum(l-1); if (P) res = (res + P) % P; return res; } long long _sum(long long r){ r++; T res = 0; while(r > 0){ res += bit[r-1]; if (P) res %= P; r -= r & -r; } return res; } }; int main(){ ll N, Q, L, R, X, now=0; cin >> N >> Q; vector<ll> v, A(N), ans(2*Q); vector<tuple<ll, ll, ll>> RXM(2*Q); BIT<ll> tc(3e5+5), ts(3e5+5); for (int i=0; i<N; i++){ cin >> A[i]; v.push_back(A[i]); } for (int i=0; i<Q; i++){ cin >> L >> R >> X; L--; R--; v.push_back(X); RXM[i*2] = {L-1, X, i*2}; RXM[i*2+1] = {R, X, i*2+1}; } sort(RXM.begin(), RXM.end()); map<ll, ll> mp = compress(v); for (auto [R, X, M] : RXM){ while(now <= R){ tc.add(mp[A[now]], 1); ts.add(mp[A[now]], A[now]); now++; } ans[M] = ts.sum(0, mp[X]-1) + tc.sum(mp[X], 3e5+4) * X; } for (int i=0; i<Q; i++) cout << ans[i*2+1] - ans[i*2] << endl; return 0; }