結果
問題 | No.877 Range ReLU Query |
ユーザー | tjake |
提出日時 | 2019-09-07 09:54:24 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,966 bytes |
コンパイル時間 | 1,113 ms |
コンパイル使用メモリ | 90,132 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-26 05:12:45 |
合計ジャッジ時間 | 5,805 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | AC | 5 ms
6,948 KB |
testcase_04 | RE | - |
testcase_05 | AC | 4 ms
6,940 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 4 ms
6,944 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
ソースコード
#include<iostream> #include<string> #include<vector> #include<queue> #include<stack> #include<map> #include<set> #include<algorithm> #include<functional> #include<cstdio> #include<cstdlib> #include<cmath> #include<cassert> #include<ctime> using namespace std; #define mind(a,b) (a>b?b:a) #define maxd(a,b) (a>b?a:b) #define absd(x) (x<0?-(x):x) #define pow2(x) ((x)*(x)) #define rep(i,n) for(int i=0; i<n; ++i) #define repr(i,n) for(int i=n-1; i>=0; --i) #define repl(i,s,n) for(int i=s; i<=n; ++i) #define replr(i,s,n) for(int i=n; i>=s; --i) #define repf(i,s,n,j) for(int i=s; i<=n; i+=j) #define repe(e,obj) for(auto e : obj) #define SP << " " << #define COL << " : " << #define COM << ", " << #define ARR << " -> " << #define PNT(STR) cout << STR << endl #define POS(X,Y) "(" << X << ", " << Y << ")" #define DEB(A) " (" << #A << ") " << A #define DEBREP(i,n,val) for(int i=0; i<n; ++i) cout << val << " "; cout << endl #define ALL(V) (V).begin(), (V).end() #define INF 1000000007 #define INFLL 1000000000000000007LL #define EPS 1e-9 typedef unsigned int uint; typedef unsigned long ulong; typedef unsigned long long ull; typedef long long ll; typedef long double ld; #define P_TYPE int typedef pair<P_TYPE, P_TYPE> P; typedef pair<P, P_TYPE> PI; typedef pair<P_TYPE, P> IP; typedef pair<P, P> PP; typedef priority_queue<P, vector<P>, greater<P> > pvqueue; #define N 1007 #define LV 18 class MergeSortTree { vector<ll> data[N]; vector<ll> sum[N]; int n0, n; void build(int k, int l, int r, ll *a) { if(l+1 == r) { if(l < n) data[k].push_back(a[l]); sum[k].push_back(0); sum[k].push_back(a[l]); return; } int m = (l+r)/2; if(l < m) build(2*k+1, l, m, a); if(m < r) build(2*k+2, m, r, a); int sz = data[2*k+1].size() + data[2*k+2].size(); data[k].resize(sz); sum[k].resize(sz+1); merge(data[2*k+1].begin(), data[2*k+1].end(), data[2*k+2].begin(), data[2*k+2].end(), data[k].begin()); sum[k][0] = 0; for(int i=0; i<data[k].size(); ++i) { sum[k][i+1] = sum[k][i] + data[k][i]; } } ll _query(ll x, int a, int b, int k, int l, int r) { if(b <= l || r <= a) { return 0; } if(a <= l && r <= b) { auto it = lower_bound(data[k].begin(), data[k].end(), x); int idx = (int)(it - data[k].begin()); return sum[k][sum[k].size()-1] - sum[k][idx] - x * ((int) data[k].size() - idx); } int m = (l + r) / 2; ll lv = _query(x, a, b, 2*k+1, l, m); ll rv = _query(x, a, b, 2*k+2, m, r); return lv + rv; } public: MergeSortTree(int n, ll *a) : n(n) { n0 = 1; while(n0 < n) n0 <<= 1; build(0, 0, n0, a); } ll query(int l, int r, ll x) { return _query(x, l, r, 0, 0, n0); } }; ll a[N]; int main() { int n, q; cin >> n >> q; rep(i, n) cin >> a[i]; MergeSortTree mst(n, a); while(q--) { int t, l, r, x; cin >> t >> l >> r >> x; cout << mst.query(l-1, r, x) << endl; } return 0; }