#include "fish.h"
#include <bits/stdc++.h>
#define pii pair<int, int>
#define fi first
#define se second
#define all(x) (x).begin(), (x).end()
using namespace std;
const int N_MAX = 1e5 + 11;
const int INC = 0;
const int DEC = 1;
const int ZERO = 2;
vector<pair<int, long long>> fish[N_MAX];
int N;
void chmax(long long& x, long long y){
x = max(x, y);
}
long long g(int x, int y){ // [x, x] times [0, y)
if(x <= 0 || x > N) return 0;
auto ptr = lower_bound(fish[x].begin(), fish[x].end(), pair<int, long long>{y, -1LL});
if(ptr == fish[x].begin()) return 0;
return (--ptr)->se;
}
vector<long long> dp[N_MAX][3];
vector<int> sp[N_MAX];
int L[N_MAX];
int at(int x, int y){
if(0 <= y && y < sp[x].size())
return sp[x][y];
assert(0 == 1);
}
long long max_weights(int N, int M, vector<int> X, vector<int> Y, vector<int> W) {
::N = N;
for(int i = 0; i < M; i++) X[i]++;
for(int i = 0; i < M; i++){
fish[X[i]].push_back({Y[i], W[i]});
}
for(int i = 1; i <= N; i++){
sort(fish[i].begin(), fish[i].end());
for(int j = 1; j < fish[i].size(); j++){
fish[i][j].se += fish[i][j - 1].se;
}
}
for(int i = 0; i < M; i++){
int x = X[i], y = Y[i];
sp[x].push_back(y + 1);
if(x > 1) sp[x - 1].push_back(y + 1);
if(x < N) sp[x + 1].push_back(y + 1);
}
for(int i = 0; i <= N; i++){
sp[i].push_back(0);
sp[i].push_back(1);
sp[i].push_back(2);
sort(sp[i].begin(), sp[i].end());
sp[i].resize(unique(sp[i].begin(), sp[i].end()) - sp[i].begin());
for(int j = 0; j < 3; j++){
dp[i][j].resize(sp[i].size());
fill(all(dp[i][j]), -1E18);
}
L[i] = sp[i].size();
}
dp[0][ZERO][0] = 0;
for(int x = 1; x <= N; x++){
// ZERO
{
for(int y = 0; y < L[x - 1]; y++){
chmax(dp[x][ZERO][0], dp[x - 1][ZERO][y]);
}
int y1 = 0;
for(int y2 = 0; y2 < L[x]; y2++){
while (y1 < L[x - 1] && at(x - 1, y1) <= at(x, y2)) {
chmax(dp[x][ZERO][y2], dp[x - 1][INC][y1]);
chmax(dp[x][ZERO][y2], dp[x - 1][DEC][y1]);
y1++;
}
}
for(int y = 0; y < L[x] - 1; y++){
chmax(dp[x][ZERO][y + 1], dp[x][ZERO][y]);
}
}
long long value = -(1LL << 60);
// INC
{
int y1 = 0;
for(int y2 = 0; y2 < L[x]; y2++){
while (y1 < L[x - 1] && at(x - 1, y1) <= at(x, y2)) {
chmax(value, dp[x - 1][INC][y1] - g(x, at(x - 1, y1)) - g(x - 1, at(x - 1, y1)));
y1++;
}
chmax(dp[x][INC][y2], value + g(x + 1, at(x, y2)) + g(x - 1, at(x, y2)));
}
value = -(1LL << 60);
y1 = 0;
for(int y2 = 0; y2 < L[x]; y2++){
while (y1 < L[x - 1] && at(x - 1, y1) <= at(x, y2)) {
chmax(value, dp[x - 1][ZERO][y1] - g(x - 1, at(x - 1, y1)));
y1++;
}
chmax(dp[x][INC][y2], dp[x - 1][ZERO][L[x - 1] - 1] + g(x + 1, at(x, y2)));
chmax(dp[x][INC][y2], value + g(x + 1, at(x, y2)) + g(x - 1, at(x, y2)));
}
}
// DEC
{
value = -(1LL << 60);
int y1 = L[x - 1] - 1;
for(int y2 = L[x] - 1; y2 >= 0; y2--){
while (y1 >= 0 && at(x - 1, y1) >= at(x, y2)) {
chmax(value, dp[x - 1][DEC][y1]); chmax(value, dp[x - 1][INC][y1]);
y1--;
}
chmax(dp[x][DEC][y2], value + g(x + 1, at(x, y2)) - g(x, at(x, y2)));
}
}
}
long long ans = 0;
/*
for(int i = 0; i <= N; i++){
for(int k = 0; k < 3; k++){
for(int j = 0; j < L[i]; j++){
cout << dp[i][k][j] << ' ';
}
cout << endl;
}
cout << endl;
}
*/
for(int k = 0; k < 3; k++){
for(int y = 0; y < L[N]; y++){
ans = max(ans, dp[N][k][y]);
}
}
return ans;
}
Compilation message
fish.cpp: In function 'int at(int, int)':
fish.cpp:34:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | if(0 <= y && y < sp[x].size())
| ~~^~~~~~~~~~~~~~
fish.cpp: In function 'long long int max_weights(int, int, std::vector<int>, std::vector<int>, std::vector<int>)':
fish.cpp:49:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
49 | for(int j = 1; j < fish[i].size(); j++){
| ~~^~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
123 ms |
31460 KB |
Output is correct |
2 |
Correct |
138 ms |
34400 KB |
Output is correct |
3 |
Correct |
48 ms |
24896 KB |
Output is correct |
4 |
Correct |
48 ms |
24916 KB |
Output is correct |
5 |
Correct |
398 ms |
61976 KB |
Output is correct |
6 |
Correct |
471 ms |
66908 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
8 ms |
11988 KB |
Output is correct |
2 |
Correct |
225 ms |
37788 KB |
Output is correct |
3 |
Correct |
261 ms |
41944 KB |
Output is correct |
4 |
Correct |
122 ms |
31344 KB |
Output is correct |
5 |
Correct |
146 ms |
34492 KB |
Output is correct |
6 |
Correct |
7 ms |
11988 KB |
Output is correct |
7 |
Correct |
6 ms |
11988 KB |
Output is correct |
8 |
Correct |
8 ms |
11988 KB |
Output is correct |
9 |
Correct |
8 ms |
11988 KB |
Output is correct |
10 |
Correct |
48 ms |
24932 KB |
Output is correct |
11 |
Correct |
57 ms |
24876 KB |
Output is correct |
12 |
Correct |
146 ms |
33596 KB |
Output is correct |
13 |
Correct |
183 ms |
37232 KB |
Output is correct |
14 |
Correct |
136 ms |
32440 KB |
Output is correct |
15 |
Correct |
145 ms |
32860 KB |
Output is correct |
16 |
Correct |
139 ms |
32536 KB |
Output is correct |
17 |
Correct |
168 ms |
34712 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
50 ms |
24880 KB |
Output is correct |
2 |
Correct |
51 ms |
25016 KB |
Output is correct |
3 |
Correct |
79 ms |
27408 KB |
Output is correct |
4 |
Correct |
74 ms |
28068 KB |
Output is correct |
5 |
Correct |
120 ms |
33568 KB |
Output is correct |
6 |
Correct |
127 ms |
32968 KB |
Output is correct |
7 |
Correct |
134 ms |
33540 KB |
Output is correct |
8 |
Correct |
118 ms |
33484 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
11988 KB |
Output is correct |
2 |
Correct |
7 ms |
11988 KB |
Output is correct |
3 |
Correct |
7 ms |
12032 KB |
Output is correct |
4 |
Correct |
6 ms |
12044 KB |
Output is correct |
5 |
Correct |
6 ms |
11988 KB |
Output is correct |
6 |
Correct |
8 ms |
11988 KB |
Output is correct |
7 |
Correct |
7 ms |
11992 KB |
Output is correct |
8 |
Correct |
9 ms |
12004 KB |
Output is correct |
9 |
Correct |
7 ms |
11988 KB |
Output is correct |
10 |
Correct |
8 ms |
12244 KB |
Output is correct |
11 |
Correct |
8 ms |
12116 KB |
Output is correct |
12 |
Incorrect |
7 ms |
12116 KB |
1st lines differ - on the 1st token, expected: '450122905247', found: '449632882918' |
13 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
11988 KB |
Output is correct |
2 |
Correct |
7 ms |
11988 KB |
Output is correct |
3 |
Correct |
7 ms |
12032 KB |
Output is correct |
4 |
Correct |
6 ms |
12044 KB |
Output is correct |
5 |
Correct |
6 ms |
11988 KB |
Output is correct |
6 |
Correct |
8 ms |
11988 KB |
Output is correct |
7 |
Correct |
7 ms |
11992 KB |
Output is correct |
8 |
Correct |
9 ms |
12004 KB |
Output is correct |
9 |
Correct |
7 ms |
11988 KB |
Output is correct |
10 |
Correct |
8 ms |
12244 KB |
Output is correct |
11 |
Correct |
8 ms |
12116 KB |
Output is correct |
12 |
Incorrect |
7 ms |
12116 KB |
1st lines differ - on the 1st token, expected: '450122905247', found: '449632882918' |
13 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
11988 KB |
Output is correct |
2 |
Correct |
7 ms |
11988 KB |
Output is correct |
3 |
Correct |
7 ms |
12032 KB |
Output is correct |
4 |
Correct |
6 ms |
12044 KB |
Output is correct |
5 |
Correct |
6 ms |
11988 KB |
Output is correct |
6 |
Correct |
8 ms |
11988 KB |
Output is correct |
7 |
Correct |
7 ms |
11992 KB |
Output is correct |
8 |
Correct |
9 ms |
12004 KB |
Output is correct |
9 |
Correct |
7 ms |
11988 KB |
Output is correct |
10 |
Correct |
8 ms |
12244 KB |
Output is correct |
11 |
Correct |
8 ms |
12116 KB |
Output is correct |
12 |
Incorrect |
7 ms |
12116 KB |
1st lines differ - on the 1st token, expected: '450122905247', found: '449632882918' |
13 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
50 ms |
24880 KB |
Output is correct |
2 |
Correct |
51 ms |
25016 KB |
Output is correct |
3 |
Correct |
79 ms |
27408 KB |
Output is correct |
4 |
Correct |
74 ms |
28068 KB |
Output is correct |
5 |
Correct |
120 ms |
33568 KB |
Output is correct |
6 |
Correct |
127 ms |
32968 KB |
Output is correct |
7 |
Correct |
134 ms |
33540 KB |
Output is correct |
8 |
Correct |
118 ms |
33484 KB |
Output is correct |
9 |
Correct |
152 ms |
43248 KB |
Output is correct |
10 |
Correct |
100 ms |
27672 KB |
Output is correct |
11 |
Correct |
206 ms |
43432 KB |
Output is correct |
12 |
Correct |
6 ms |
12028 KB |
Output is correct |
13 |
Correct |
7 ms |
11988 KB |
Output is correct |
14 |
Correct |
6 ms |
11988 KB |
Output is correct |
15 |
Correct |
6 ms |
11956 KB |
Output is correct |
16 |
Correct |
6 ms |
11988 KB |
Output is correct |
17 |
Correct |
7 ms |
12048 KB |
Output is correct |
18 |
Correct |
50 ms |
24940 KB |
Output is correct |
19 |
Correct |
49 ms |
24856 KB |
Output is correct |
20 |
Correct |
48 ms |
24936 KB |
Output is correct |
21 |
Correct |
52 ms |
24944 KB |
Output is correct |
22 |
Incorrect |
183 ms |
42228 KB |
1st lines differ - on the 1st token, expected: '45561826463480', found: '45301765388871' |
23 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
123 ms |
31460 KB |
Output is correct |
2 |
Correct |
138 ms |
34400 KB |
Output is correct |
3 |
Correct |
48 ms |
24896 KB |
Output is correct |
4 |
Correct |
48 ms |
24916 KB |
Output is correct |
5 |
Correct |
398 ms |
61976 KB |
Output is correct |
6 |
Correct |
471 ms |
66908 KB |
Output is correct |
7 |
Correct |
8 ms |
11988 KB |
Output is correct |
8 |
Correct |
225 ms |
37788 KB |
Output is correct |
9 |
Correct |
261 ms |
41944 KB |
Output is correct |
10 |
Correct |
122 ms |
31344 KB |
Output is correct |
11 |
Correct |
146 ms |
34492 KB |
Output is correct |
12 |
Correct |
7 ms |
11988 KB |
Output is correct |
13 |
Correct |
6 ms |
11988 KB |
Output is correct |
14 |
Correct |
8 ms |
11988 KB |
Output is correct |
15 |
Correct |
8 ms |
11988 KB |
Output is correct |
16 |
Correct |
48 ms |
24932 KB |
Output is correct |
17 |
Correct |
57 ms |
24876 KB |
Output is correct |
18 |
Correct |
146 ms |
33596 KB |
Output is correct |
19 |
Correct |
183 ms |
37232 KB |
Output is correct |
20 |
Correct |
136 ms |
32440 KB |
Output is correct |
21 |
Correct |
145 ms |
32860 KB |
Output is correct |
22 |
Correct |
139 ms |
32536 KB |
Output is correct |
23 |
Correct |
168 ms |
34712 KB |
Output is correct |
24 |
Correct |
50 ms |
24880 KB |
Output is correct |
25 |
Correct |
51 ms |
25016 KB |
Output is correct |
26 |
Correct |
79 ms |
27408 KB |
Output is correct |
27 |
Correct |
74 ms |
28068 KB |
Output is correct |
28 |
Correct |
120 ms |
33568 KB |
Output is correct |
29 |
Correct |
127 ms |
32968 KB |
Output is correct |
30 |
Correct |
134 ms |
33540 KB |
Output is correct |
31 |
Correct |
118 ms |
33484 KB |
Output is correct |
32 |
Correct |
6 ms |
11988 KB |
Output is correct |
33 |
Correct |
7 ms |
11988 KB |
Output is correct |
34 |
Correct |
7 ms |
12032 KB |
Output is correct |
35 |
Correct |
6 ms |
12044 KB |
Output is correct |
36 |
Correct |
6 ms |
11988 KB |
Output is correct |
37 |
Correct |
8 ms |
11988 KB |
Output is correct |
38 |
Correct |
7 ms |
11992 KB |
Output is correct |
39 |
Correct |
9 ms |
12004 KB |
Output is correct |
40 |
Correct |
7 ms |
11988 KB |
Output is correct |
41 |
Correct |
8 ms |
12244 KB |
Output is correct |
42 |
Correct |
8 ms |
12116 KB |
Output is correct |
43 |
Incorrect |
7 ms |
12116 KB |
1st lines differ - on the 1st token, expected: '450122905247', found: '449632882918' |
44 |
Halted |
0 ms |
0 KB |
- |