結果
| 問題 |
No.877 Range ReLU Query
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-09-06 22:30:42 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 2,867 bytes |
| コンパイル時間 | 854 ms |
| コンパイル使用メモリ | 95,988 KB |
| 最終ジャッジ日時 | 2024-11-14 21:37:16 |
| 合計ジャッジ時間 | 2,639 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp:17:39: error: '::numeric_limits' has not been declared
17 | template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;
| ^~~~~~~~~~~~~~
main.cpp:17:55: error: expected primary-expression before '>' token
17 | template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;
| ^
main.cpp:17:61: error: no matching function for call to 'max()'
17 | template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;
| ~~~~~^~
In file included from /home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/string:50,
from /home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/bits/locale_classes.h:40,
from /home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/bits/ios_base.h:41,
from /home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/ios:42,
from /home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/ostream:38,
from /home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/iostream:39,
from main.cpp:1:
/home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/bits/stl_algobase.h:254:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::max(const _Tp&, const _Tp&)'
254 | max(const _Tp& __a, const _Tp& __b)
| ^~~
/home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/bits/stl_algobase.h:254:5: note: template argument deduction/substitution failed:
main.cpp:17:61: note: candidate expects 2 arguments, 0 provided
17 | template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;
| ~~~~~^~
/home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/bits/stl_algobase.h:300:5: note: candidate: 'templat
ソースコード
#include <iostream>
#include <algorithm>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>
static const int MOD = 1000000007;
using ll = long long;
using u32 = uint32_t;
using namespace std;
template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;
template <class M>
struct SegmentTree{
using T = typename M::T;
int sz;
vector<T> seg;
explicit SegmentTree(int n) {
sz = 1;
while(sz < n) sz <<= 1;
seg.assign(2*sz, M::e());
}
void set(int k, const T &x){ seg[k + sz] = x; }
void build(){
for (int i = sz-1; i > 0; --i) seg[i] = M::f(seg[2*i], seg[2*i+1]);
}
void update(int k, const T &x){
k += sz;
seg[k] = x;
while (k >>= 1) seg[k] = M::f(seg[2*k], seg[2*k+1]);
}
T query(int a, int b){
T l = M::e(), r = M::e();
for(a += sz, b += sz; a < b; a >>=1, b>>=1){
if(a & 1) l = M::f(l, seg[a++]);
if(b & 1) r = M::f(seg[--b], r);
}
return M::f(l, r);
}
template<typename C>
int find(int t, C &c, T &val, int k, int l, int r){
if(r-l == 1){
val = f(val, seg[k]);
return c(val) ? k-sz : -1;
}
int m = (l+r) >> 1;
if(m <= t) return find(t, c, val, (k << 1) | 1, m, r);
if(t <= l && !c(val = f(val, seg[k]))) return -1;
int lv = find(t, c, val, (k << 1) | 0 , l, m);
if(~lv) return lv;
return find(t, c, val, (k << 1) | 1, m, r);
}
template<typename C>
int find(int t, C &c){
T val = M::e();
return find(t, c, val, 1, 0, sz);
}
T operator[](const int &k) const { return seg[k + sz]; }
};
struct Monoid{
using T = pair<ll, ll>;
static T f(T a, T b) { return {a.first+b.first, a.second+b.second}; }
static T e() { return {0, 0}; }
};
int main() {
int n, q;
cin >> n >> q;
vector<ll> ans(q);
vector<pair<int, int>> v(n);
for (int i = 0; i < n; ++i) {
scanf("%d", &v[i].first);
v[i].second = i;
}
v.emplace_back(-INF<int>, -1);
sort(v.begin(),v.end(), greater<>());
vector<array<ll, 4>> query(q);
int tmp = 0;
for (int i = 0; i < q; ++i) {
scanf("%d %lld %lld %lld",&tmp, &query[i][1], &query[i][2], &query[i][0]);
query[i][3] = i;
}
sort(query.begin(),query.end(), greater<>());
int cur = 0;
SegmentTree<Monoid> seg(n);
for (auto &&p : query) {
while(v[cur].first >= p[0]) {
seg.update(v[cur].second, {v[cur].first, 1});
cur++;
}
auto res = seg.query(p[1]-1, p[2]);
ans[p[3]] = res.first-(ll)res.second*p[0];
}
for (int i = 0; i < q; ++i) {
printf("%lld\n", ans[i]);
}
return 0;
}