#include "fish.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
vector<pair<int, int>> pos[100100];
struct DP {
ll in, de;
DP() {
in = de = 0;
}
} dp[600600];
int w[600600];
int n, m;
ll max_weights(int N, int M, vector<int> X, vector<int> Y, vector<int> W) {
n = N, m = M;
for (int i = 0;i < m;i++) {
w[i + 1] = W[i];
pos[X[i] + 1].push_back({ Y[i] + 1, i + 1 });
}
int idx = m, p;
ll mx, sum;
for (int i = 2;i <= n;i++) {
pos[i].push_back({ 0, ++idx });
pos[i].push_back({ n + 1, ++idx });
sort(pos[i].begin(), pos[i].end());
// in -> in
{
p = 0;
mx = 0;
for (int j = 0;j < (int)pos[i].size();j++) {
while (p < (int)pos[i - 1].size() && pos[i - 1][p].first <= pos[i][j].first - 1) {
int prev = pos[i - 1][p++].second;
mx = max(mx, dp[prev].in) + w[prev];
}
dp[pos[i][j].second].in = mx;
}
}
// de -> de , in -> de
{
p = pos[i - 1].size() - 1;
mx = 0;
for (int j = pos[i].size() - 1;j >= 0;j--) {
while (p >= 0 && pos[i - 1][p].first > pos[i][j].first) {
int prev = pos[i - 1][p--].second;
mx = max({ mx, dp[prev].in, dp[prev].de });
}
mx += w[pos[i][j].second];
dp[pos[i][j].second].de = mx;
}
}
// in -> de, de -> in
if (i >= 3) {
// h[i-2] <= h[i]
{
int mid = 0;
p = 0;
mx = 0, sum = 0;
for (int j = 0;j < (int)pos[i].size();j++) {
while (p < (int)pos[i - 2].size() && pos[i - 2][p].first <= pos[i][j].first) {
int prev = pos[i - 2][p].second;
mx = max({ mx ,dp[prev].in, dp[prev].de });
p++;
}
while (mid < (int)pos[i - 1].size() && pos[i - 1][mid].first < pos[i][j].first) {
sum += w[pos[i - 1][mid++].second];
}
dp[pos[i][j].second].in = max(dp[pos[i][j].second].in, mx + sum);
}
}
// h[i-2] >= h[i]
{
int mid = pos[i - 1].size() - 1;
mx = 0, sum = 0;
for (int j = 0;j <= mid;j++) sum += w[pos[i - 1][j].second];
p = pos[i - 2].size() - 1;
for (int j = pos[i].size() - 1;j >= 0;j--) {
while (p >= 0 && pos[i - 2][p].first >= pos[i][j].first - 1) {
int prev = pos[i - 2][p].second;
int now = pos[i - 2][p].first;
mx = max({ mx, dp[prev].in + sum, dp[prev].de + sum });
while (mid >= 0 && pos[i - 1][mid].first > now - 1) {
sum -= w[pos[i - 1][mid--].second];
}
p--;
}
dp[pos[i][j].second].in = max(dp[pos[i][j].second].in, mx);
}
}
}
}
ll ans = 0;
for (int i = 1;i <= idx;i++) {
ans = max(ans, dp[i].in);
ans = max(ans, dp[i].de);
}
return ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
33 ms |
18628 KB |
Output is correct |
2 |
Correct |
36 ms |
19908 KB |
Output is correct |
3 |
Correct |
22 ms |
15196 KB |
Output is correct |
4 |
Correct |
14 ms |
15192 KB |
Output is correct |
5 |
Correct |
137 ms |
29512 KB |
Output is correct |
6 |
Correct |
111 ms |
31216 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
12120 KB |
Output is correct |
2 |
Incorrect |
83 ms |
22284 KB |
1st lines differ - on the 1st token, expected: '40604614618209', found: '40479197388443' |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
14 ms |
15264 KB |
Output is correct |
2 |
Correct |
15 ms |
15144 KB |
Output is correct |
3 |
Incorrect |
32 ms |
18260 KB |
1st lines differ - on the 1st token, expected: '21261825233649', found: '23323672247967' |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
12120 KB |
Output is correct |
2 |
Correct |
4 ms |
12124 KB |
Output is correct |
3 |
Correct |
5 ms |
12200 KB |
Output is correct |
4 |
Correct |
5 ms |
12196 KB |
Output is correct |
5 |
Correct |
5 ms |
12124 KB |
Output is correct |
6 |
Correct |
5 ms |
11984 KB |
Output is correct |
7 |
Correct |
6 ms |
12124 KB |
Output is correct |
8 |
Correct |
7 ms |
12124 KB |
Output is correct |
9 |
Incorrect |
5 ms |
12124 KB |
1st lines differ - on the 1st token, expected: '216624184325', found: '218048786436' |
10 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
12120 KB |
Output is correct |
2 |
Correct |
4 ms |
12124 KB |
Output is correct |
3 |
Correct |
5 ms |
12200 KB |
Output is correct |
4 |
Correct |
5 ms |
12196 KB |
Output is correct |
5 |
Correct |
5 ms |
12124 KB |
Output is correct |
6 |
Correct |
5 ms |
11984 KB |
Output is correct |
7 |
Correct |
6 ms |
12124 KB |
Output is correct |
8 |
Correct |
7 ms |
12124 KB |
Output is correct |
9 |
Incorrect |
5 ms |
12124 KB |
1st lines differ - on the 1st token, expected: '216624184325', found: '218048786436' |
10 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
12120 KB |
Output is correct |
2 |
Correct |
4 ms |
12124 KB |
Output is correct |
3 |
Correct |
5 ms |
12200 KB |
Output is correct |
4 |
Correct |
5 ms |
12196 KB |
Output is correct |
5 |
Correct |
5 ms |
12124 KB |
Output is correct |
6 |
Correct |
5 ms |
11984 KB |
Output is correct |
7 |
Correct |
6 ms |
12124 KB |
Output is correct |
8 |
Correct |
7 ms |
12124 KB |
Output is correct |
9 |
Incorrect |
5 ms |
12124 KB |
1st lines differ - on the 1st token, expected: '216624184325', found: '218048786436' |
10 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
14 ms |
15264 KB |
Output is correct |
2 |
Correct |
15 ms |
15144 KB |
Output is correct |
3 |
Incorrect |
32 ms |
18260 KB |
1st lines differ - on the 1st token, expected: '21261825233649', found: '23323672247967' |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
33 ms |
18628 KB |
Output is correct |
2 |
Correct |
36 ms |
19908 KB |
Output is correct |
3 |
Correct |
22 ms |
15196 KB |
Output is correct |
4 |
Correct |
14 ms |
15192 KB |
Output is correct |
5 |
Correct |
137 ms |
29512 KB |
Output is correct |
6 |
Correct |
111 ms |
31216 KB |
Output is correct |
7 |
Correct |
5 ms |
12120 KB |
Output is correct |
8 |
Incorrect |
83 ms |
22284 KB |
1st lines differ - on the 1st token, expected: '40604614618209', found: '40479197388443' |
9 |
Halted |
0 ms |
0 KB |
- |