#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 4e5 + 10;
const ll inf = 1e18, mod = 1e9 + 7;
ll a[maxn], dp[maxn], tree[4 * maxn], lazy[4 * maxn];
void push_lazy(int root, int left, int right)
{
tree[root] += lazy[root];
if (left != right)
{
lazy[root * 2] += lazy[root];
lazy[root * 2 + 1] += lazy[root];
}
lazy[root] = 0;
}
void update(int root, int left, int right, int pos, ll val)
{
push_lazy(root, left, right);
if (left == right)
{
tree[root] = val;
return;
}
int mid = (left + right) / 2;
if (pos <= mid)
update(root * 2, left, mid, pos, val);
else
update(root * 2 + 1, mid + 1, right, pos, val);
tree[root] = min(tree[root * 2], tree[root * 2 + 1]);
}
ll query(int root, int left, int right, int qleft, int qright)
{
push_lazy(root, left, right);
if (left > qright || right < qleft)
return inf;
if (left >= qleft && right <= qright)
return tree[root];
int mid = (left + right) / 2;
return min(query(root * 2, left, mid, qleft, qright),
query(root * 2 + 1, mid + 1, right, qleft, qright));
}
void range_update(int root, int left, int right, int qleft, int qright, ll val)
{
///cout << root << " " << left << " " << right << endl;
push_lazy(root, left, right);
if (left > qright || right < qleft)
return;
if (left >= qleft && right <= qright)
{
lazy[root] += val;
push_lazy(root, left, right);
return;
}
int mid = (left + right) / 2;
range_update(root * 2, left, mid, qleft, qright, val);
range_update(root * 2 + 1, mid + 1, right, qleft, qright, val);
tree[root] = min(tree[root * 2], tree[root * 2 + 1]);
}
int solve(int n, int k, int *S)
{
for (int i = 0; i < n; i ++)
a[i + 1] = S[i];
update(1, 0, n, 0, a[1]);
stack < int > st;
st.push(1);
for (int i = 1; i <= n; i ++)
{
///cout << "---------------- " << i << endl;
dp[i] = query(1, 0, n, max(0, i - k), i - 1);
update(1, 0, n, i, dp[i] + a[i + 1]);
if (i != n)
{
while(!st.empty() && a[st.top()] < a[i + 1])
{
int pos = st.top();
st.pop();
int from = 1;
if (!st.empty())
from = st.top() + 1;
///cout << from << " " << pos << endl;
range_update(1, 0, n, from - 1, pos - 1, a[i + 1] - a[pos]);
///cout << "finito" << endl;
}
}
st.push(i + 1);
/**ll mx = a[i];
for (int j = i - 1; j >= max(0, i - k); j --)
{
dp[i] = min(dp[i], dp[j] + mx);
mx = max(mx, a[j]);
}*/
}
/**for (int i = 1; i <= n; i ++)
cout << dp[i] << " ";
cout << endl;*/
ll cur = 1, ans = 0;
for (int i = n; i > 0; i --)
{
ans = (ans + (dp[i] % mod) * cur) % mod;
cur = (cur * (ll)23) % mod;
}
return ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
468 KB |
Output is correct |
2 |
Correct |
3 ms |
456 KB |
Output is correct |
3 |
Correct |
2 ms |
468 KB |
Output is correct |
4 |
Correct |
2 ms |
468 KB |
Output is correct |
5 |
Correct |
2 ms |
468 KB |
Output is correct |
6 |
Correct |
2 ms |
468 KB |
Output is correct |
7 |
Correct |
2 ms |
468 KB |
Output is correct |
8 |
Correct |
2 ms |
468 KB |
Output is correct |
9 |
Correct |
1 ms |
456 KB |
Output is correct |
10 |
Correct |
2 ms |
468 KB |
Output is correct |
11 |
Correct |
2 ms |
424 KB |
Output is correct |
12 |
Correct |
1 ms |
468 KB |
Output is correct |
13 |
Correct |
2 ms |
460 KB |
Output is correct |
14 |
Correct |
1 ms |
468 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
468 KB |
Output is correct |
2 |
Correct |
3 ms |
456 KB |
Output is correct |
3 |
Correct |
2 ms |
468 KB |
Output is correct |
4 |
Correct |
2 ms |
468 KB |
Output is correct |
5 |
Correct |
2 ms |
468 KB |
Output is correct |
6 |
Correct |
2 ms |
468 KB |
Output is correct |
7 |
Correct |
2 ms |
468 KB |
Output is correct |
8 |
Correct |
2 ms |
468 KB |
Output is correct |
9 |
Correct |
1 ms |
456 KB |
Output is correct |
10 |
Correct |
2 ms |
468 KB |
Output is correct |
11 |
Correct |
2 ms |
424 KB |
Output is correct |
12 |
Correct |
1 ms |
468 KB |
Output is correct |
13 |
Correct |
2 ms |
460 KB |
Output is correct |
14 |
Correct |
1 ms |
468 KB |
Output is correct |
15 |
Correct |
312 ms |
28776 KB |
Output is correct |
16 |
Correct |
304 ms |
28712 KB |
Output is correct |
17 |
Correct |
302 ms |
28808 KB |
Output is correct |
18 |
Correct |
323 ms |
28692 KB |
Output is correct |
19 |
Correct |
338 ms |
28768 KB |
Output is correct |
20 |
Correct |
337 ms |
28748 KB |
Output is correct |
21 |
Correct |
316 ms |
28728 KB |
Output is correct |
22 |
Correct |
313 ms |
28880 KB |
Output is correct |
23 |
Correct |
309 ms |
28796 KB |
Output is correct |
24 |
Correct |
317 ms |
28824 KB |
Output is correct |
25 |
Correct |
310 ms |
28944 KB |
Output is correct |
26 |
Correct |
315 ms |
28708 KB |
Output is correct |
27 |
Correct |
321 ms |
28752 KB |
Output is correct |
28 |
Correct |
325 ms |
28872 KB |
Output is correct |
29 |
Correct |
322 ms |
28788 KB |
Output is correct |
30 |
Correct |
334 ms |
28780 KB |
Output is correct |
31 |
Correct |
309 ms |
28800 KB |
Output is correct |
32 |
Correct |
319 ms |
28744 KB |
Output is correct |
33 |
Correct |
301 ms |
28744 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
312 ms |
28776 KB |
Output is correct |
2 |
Correct |
304 ms |
28712 KB |
Output is correct |
3 |
Correct |
302 ms |
28808 KB |
Output is correct |
4 |
Correct |
323 ms |
28692 KB |
Output is correct |
5 |
Correct |
338 ms |
28768 KB |
Output is correct |
6 |
Correct |
337 ms |
28748 KB |
Output is correct |
7 |
Correct |
316 ms |
28728 KB |
Output is correct |
8 |
Correct |
313 ms |
28880 KB |
Output is correct |
9 |
Correct |
309 ms |
28796 KB |
Output is correct |
10 |
Correct |
317 ms |
28824 KB |
Output is correct |
11 |
Correct |
310 ms |
28944 KB |
Output is correct |
12 |
Correct |
315 ms |
28708 KB |
Output is correct |
13 |
Correct |
321 ms |
28752 KB |
Output is correct |
14 |
Correct |
325 ms |
28872 KB |
Output is correct |
15 |
Correct |
322 ms |
28788 KB |
Output is correct |
16 |
Correct |
334 ms |
28780 KB |
Output is correct |
17 |
Correct |
309 ms |
28800 KB |
Output is correct |
18 |
Correct |
319 ms |
28744 KB |
Output is correct |
19 |
Correct |
301 ms |
28744 KB |
Output is correct |
20 |
Correct |
1 ms |
468 KB |
Output is correct |
21 |
Correct |
3 ms |
456 KB |
Output is correct |
22 |
Correct |
2 ms |
468 KB |
Output is correct |
23 |
Correct |
2 ms |
468 KB |
Output is correct |
24 |
Correct |
2 ms |
468 KB |
Output is correct |
25 |
Correct |
2 ms |
468 KB |
Output is correct |
26 |
Correct |
2 ms |
468 KB |
Output is correct |
27 |
Correct |
2 ms |
468 KB |
Output is correct |
28 |
Correct |
1 ms |
456 KB |
Output is correct |
29 |
Correct |
2 ms |
468 KB |
Output is correct |
30 |
Correct |
2 ms |
424 KB |
Output is correct |
31 |
Correct |
1 ms |
468 KB |
Output is correct |
32 |
Correct |
2 ms |
460 KB |
Output is correct |
33 |
Correct |
1 ms |
468 KB |
Output is correct |
34 |
Runtime error |
55 ms |
50384 KB |
Execution killed with signal 11 |
35 |
Halted |
0 ms |
0 KB |
- |