#include <bits/stdc++.h>
#define int long long
#define ll long long
#define pb push_back
#define fi first
#define se second
#define lf (id<<1)
#define rg ((id<<1)|1)
#define md ((l+r)>>1)
#define ld long double
using namespace std;
typedef pair<int,int> pii;
typedef pair<char,char> pcc;
typedef pair<int,pii> ipii;
typedef pair<pii,pii> ipiii;
const int MAXN = 5e5+30;
const int SQRT = 610;
const int MAXA = 5e3+10;
const int MOD = 1e6+7;
const int INF = 1e18+10;
const int LOG = 21;
const ld EPS = 1e-12;
void chmx(int &a, int b){ a = max(a,b); }
int n, u, d, s;
vector <ipii> vec;
int le[MAXN], ri[MAXN], le2[MAXN], ri2[MAXN], a[MAXN];
signed main(){
// ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cin >> n >> u >> d >> s;
for(int i=0; i<=MAXA+1; i++) le[i] = ri[i] = -INF;
for(int i=1; i<=s; i++) le[i] = -s*u; // -s*u + i*u
for(int i=s; i<=MAXA; i++) ri[i] = s*d; // -i*d + s*d
for(int i=1; i<=n; i++){
int d,id,w; cin>>d>>id>>w;
vec.pb({d, {id,w}});
}
sort(vec.begin(), vec.end());
for(int p=0; p<vec.size(); ){
int j = p;
vector <pii> te, te2;
for(int i=1; i<=MAXA; i++) a[i] = 0;
while(p<vec.size() && vec[p].fi == vec[j].fi){
a[vec[p].se.fi] += vec[p].se.se;
p++;
}
int nw = -INF;
for(int i=1; i<=MAXA; i++){
nw = max(nw, max(le[i]+i*u, ri[i]-i*d) );
nw += a[i];
le2[i] = nw - i*u;
}
nw = -INF;
for(int i=MAXA; i>=1; i--){
nw = max(nw, max(le[i]+i*u, ri[i]-i*d) );
nw += a[i];
ri2[i] = nw + i*d;
}
for(int i=1; i<=MAXA; i++)
chmx(le[i], max(le2[i], ri2[i]-i*d-i*u) ),
chmx(ri[i], max(ri2[i], le2[i]-i*d-i*u));
}
cout << max(le[s]+s*u, ri[s]-s*d) << '\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |