mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-23 23:08:47 +00:00
parent
1a7308aec6
commit
dba190b31c
84
S2OJ/1805/1805.cpp
Normal file
84
S2OJ/1805/1805.cpp
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
using std::cin;
|
||||||
|
using std::cout;
|
||||||
|
const char endl = '\n';
|
||||||
|
|
||||||
|
const int N = 1e5 + 5;
|
||||||
|
const long long INF = 0x3f3f3f3f'3f3f3f3f;
|
||||||
|
|
||||||
|
struct node {
|
||||||
|
long long max;
|
||||||
|
node *lchild, *rchild;
|
||||||
|
|
||||||
|
node()
|
||||||
|
: max(-INF), lchild(nullptr), rchild(nullptr) {}
|
||||||
|
|
||||||
|
void pushup() {
|
||||||
|
max = -INF;
|
||||||
|
|
||||||
|
if (lchild) max = std::max(max, lchild->max);
|
||||||
|
if (rchild) max = std::max(max, rchild->max);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
int k, m, d, a, n, t[N], b[N];
|
||||||
|
long long f[N];
|
||||||
|
node *root;
|
||||||
|
|
||||||
|
void modify(node *&cur, int l, int r, int x, long long v) {
|
||||||
|
if (!cur) cur = new node();
|
||||||
|
|
||||||
|
if (l == r) {
|
||||||
|
cur->max = v;
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
int mid = l + r >> 1;
|
||||||
|
|
||||||
|
if (x <= mid) modify(cur->lchild, l, mid, x, v);
|
||||||
|
else modify(cur->rchild, mid + 1, r, x, v);
|
||||||
|
|
||||||
|
cur->pushup();
|
||||||
|
}
|
||||||
|
|
||||||
|
long long query(node *cur, int l, int r, int ql, int qr) {
|
||||||
|
if (!cur) return -INF;
|
||||||
|
if (ql <= l && r <= qr) return cur->max;
|
||||||
|
|
||||||
|
int mid = l + r >> 1;
|
||||||
|
long long res = -INF;
|
||||||
|
|
||||||
|
if (ql <= mid) res = std::max(res, query(cur->lchild, l, mid, ql, qr));
|
||||||
|
if (qr > mid) res = std::max(res, query(cur->rchild, mid + 1, r, ql, qr));
|
||||||
|
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
std::ios::sync_with_stdio(false);
|
||||||
|
cin.tie(nullptr);
|
||||||
|
|
||||||
|
cin >> k >> m >> d >> a >> n;
|
||||||
|
|
||||||
|
for (int i = 1; i <= n; i++) {
|
||||||
|
cin >> t[i] >> b[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
t[0] = k, t[n + 1] = m;
|
||||||
|
|
||||||
|
modify(root, 0, d - 1, t[0] % d, static_cast<long long>(t[0]) / d * a);
|
||||||
|
|
||||||
|
for (int i = 1; i <= n + 1; i++) {
|
||||||
|
f[i] = std::max(
|
||||||
|
query(root, 0, d - 1, 0, (t[i] - 1) % d),
|
||||||
|
query(root, 0, d - 1, (t[i] - 1) % d + 1, d - 1) + a)
|
||||||
|
- static_cast<long long>(t[i] - 1) / d * a - a + b[i];
|
||||||
|
modify(root, 0, d - 1, t[i] % d, f[i] + static_cast<long long>(t[i]) / d * a);
|
||||||
|
}
|
||||||
|
|
||||||
|
cout << f[n + 1] << endl;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
BIN
S2OJ/1805/data/problem.conf
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/problem.conf
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading1.in
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading1.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading1.out
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading1.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading10.in
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading10.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading10.out
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading10.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading2.in
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading2.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading2.out
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading2.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading3.in
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading3.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading3.out
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading3.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading4.in
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading4.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading4.out
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading4.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading5.in
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading5.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading5.out
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading5.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading6.in
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading6.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading6.out
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading6.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading7.in
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading7.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading7.out
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading7.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading8.in
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading8.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading8.out
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading8.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading9.in
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading9.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
S2OJ/1805/data/reading9.out
(Stored with Git LFS)
Normal file
BIN
S2OJ/1805/data/reading9.out
(Stored with Git LFS)
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user