Submission #541697

#TimeUsernameProblemLanguageResultExecution timeMemory
541697sidonLong Distance Coach (JOI17_coach)C++17
0 / 100
1 ms340 KiB
#include <bits/stdc++.h>
using namespace std;
using ll = long long;

const ll INF = 1e18;
const int SZ = 2e5+1;

struct Line {
	ll m {}, c {};
	ll operator()(const ll &x) { return m * x + c; }
};

struct LiChaoTree {
	ll l, r; Line v;
	LiChaoTree *L = NULL, *R = NULL;
	LiChaoTree(int lv, int rv) : l(lv), r(rv) {}
	void insert(Line x) {
		ll m = (l + r) >> 1;
		if(v(m) < x(m)) swap(v, x);
		if(r - l < 2) return;

		x.m > v.m ? (R ? : R = new LiChaoTree(m, r))->insert(x):
					(L ? : L = new LiChaoTree(l, m))->insert(x);
	}
	ll operator()(const int &x) {
		if(r - l < 2) return v(x);
		ll m = (l + r) >> 1;
		return x < m ? max(v(x), L ? (*L)(x) : -INF):
					   max(v(x), R ? (*R)(x) : -INF);
	}
};

int N, M;
ll X, W, T, S[SZ], D[SZ], C[SZ];

int main() {
	cin.tie(0)->sync_with_stdio(0);
	cin >> X >> N >> M >> W >> T;

	vector<pair<ll, int>> a(N+M+1);

	for(int i = 0; i < N; ++i) {
		cin >> S[i];
		a[i+0] = {S[i] % T, i};
	}
	a[N] = {X % T, N};
	S[N++] = X;

	for(int i = 0; i < M; ++i) {
		cin >> D[i] >> C[i];
		a[i+N] = {D[i] % T, i + N};
	}

	sort(begin(a), end(a), [](const auto &i, const auto &j) {
		return i.first < j.first;
	});

	LiChaoTree lct(0, X+1);

	ll cost {}, dp[N+M+1] {}, ext = ((X - 1) / T + 1) * W;
	int cnt {};

	for(int i = 1; i <= N + M; ++i) {
		dp[i] = dp[i-1];

		int c = a[i-1].second;
		if(c < N) {
			ll f = (S[c] - ll(1)) / T;
			dp[i] = max(dp[i], cost - f * cnt * W + lct(f));
		} else {
			c -= N; ++cnt;
			ll total = (X / T) + (D[c] <= (X % T));
			ext += total * W;
			cost += total * W - C[c];
		}
		lct.insert(Line{cnt * W, dp[i] - cost});
	}
	cout << ext - *max_element(dp, dp + N + M + 1);
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...