#include "fish.h"
#include <bits/stdc++.h>
#include <vector>
#define ll long long
#define f first
#define s second
#define pii pair<int,int>
#define pll pair<ll,ll>
#define pb push_back
#define epb emplace_back
#define ull unsigned ll
using namespace std;
const int NMAX = 1e5 + 5;
vector <vector <ll> > DP(NMAX);
vector <vector <ll> > dp(NMAX);
vector <vector <ll> > p(NMAX);
vector <vector <ll> > pmax(NMAX);
vector <vector <ll> > smax(NMAX);
vector <vector <pll> > vec(NMAX);
vector <vector <int> > vec1(NMAX);
long long max_weights(int N, int M, std::vector<int> X, std::vector<int> Y,std::vector<int> W) {
int n = N, m = M;
vector <int> x = X, y = Y, w = W;
for(int i = 0; i < m; i++){
vec[x[i] + 1].pb({y[i] + 1, w[i]});
vec1[x[i] + 1].pb(y[i] + 1);
}
for(int i = 1; i <= n; i++){
vec[i].pb({0, 0});
vec[i].pb({n + 1, 0});
vec1[i].pb(0);
vec1[i].pb(n + 1);
sort(vec1[i].begin(), vec1[i].end());
sort(vec[i].begin(), vec[i].end());
dp[i].resize(vec[i].size());
DP[i].resize(vec[i].size());
p[i].resize(vec[i].size());
pmax[i].resize(vec[i].size());
smax[i].resize(vec[i].size());
p[i][0] = 0;
for(int j = 1; j < vec[i].size(); j++) p[i][j] = p[i][j - 1] + vec[i][j].s;
}
ll ans = 0;
for(int i = 1; i <= n; i++){
if(i != 1){
for(int j = 0; j < vec[i].size(); j++){
int x = lower_bound(vec1[i - 1].begin(), vec1[i - 1].end(), vec1[i][j]) - vec1[i - 1].begin();
x--;
if(j > 0)DP[i][j] = pmax[i - 1][x] + p[i - 1][x];
ans = max(ans, DP[i][j]);
}
DP[i][0] = max(DP[i][0], dp[i - 1][0]);
ans = max(ans, dp[i - 1][0]);
DP[i].back() = max(DP[i].back(), DP[i - 1].back());
ans = max(ans, DP[i - 1].back());
for(int j = 0; j < vec[i].size(); j++){
int x = upper_bound(vec1[i - 1].begin(), vec1[i - 1].end(), vec1[i][j]) - vec1[i -1].begin();
if(x < vec[i - 1].size()){
dp[i][j] = smax[i - 1][x] - p[i][j];
ans = max(ans, dp[i][j]);
}
}
dp[i].back() = max(dp[i].back(), dp[i - 1].back());
ans = max(ans, dp[i - 1].back());
}
pmax[i][0] = DP[i][0];
for(int j= 1; j < vec[i].size(); j++) pmax[i][j] = max(DP[i][j] - p[i][j - 1], pmax[i][j - 1]);
smax[i].back() = max(dp[i].back(), DP[i].back());
if(!vec[i + 1].empty()) {
int x = lower_bound(vec1[i + 1].begin(), vec1[i + 1].end(), vec1[i].back()) - vec1[i + 1].begin();
x--;
smax[i].back() += p[i + 1][x];
}
for(int j = smax[i].size() - 2; j >= 0; j--){
smax[i][j] = max(dp[i][j], DP[i][j]);
int x = lower_bound(vec1[i + 1].begin(), vec1[i + 1].end(), vec1[i][j]) - vec1[i + 1].begin();
x--;
if(x > 0){
smax[i][j] += p[i + 1][x];
}
smax[i][j] = max(smax[i][j], smax[i][j +1]);
}
}
/*for(int i = 1; i <= n; i++){
for(int to : dp[i]) cout << to << ' ';
cout << "\n";
}
for(int i= 1; i <= n; i++){
for(int to : DP[i]) cout << to << ' ';
cout << "\n";
}*/
return ans;
}
Compilation message
fish.cpp: In function 'long long int max_weights(int, int, std::vector<int>, std::vector<int>, std::vector<int>)':
fish.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
44 | for(int j = 1; j < vec[i].size(); j++) p[i][j] = p[i][j - 1] + vec[i][j].s;
| ~~^~~~~~~~~~~~~~~
fish.cpp:49:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
49 | for(int j = 0; j < vec[i].size(); j++){
| ~~^~~~~~~~~~~~~~~
fish.cpp:59:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
59 | for(int j = 0; j < vec[i].size(); j++){
| ~~^~~~~~~~~~~~~~~
fish.cpp:61:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
61 | if(x < vec[i - 1].size()){
| ~~^~~~~~~~~~~~~~~~~~~
fish.cpp:70:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
70 | for(int j= 1; j < vec[i].size(); j++) pmax[i][j] = max(DP[i][j] - p[i][j - 1], pmax[i][j - 1]);
| ~~^~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
103 ms |
45376 KB |
Output is correct |
2 |
Correct |
120 ms |
49632 KB |
Output is correct |
3 |
Correct |
63 ms |
40144 KB |
Output is correct |
4 |
Correct |
65 ms |
40112 KB |
Output is correct |
5 |
Correct |
214 ms |
68508 KB |
Output is correct |
6 |
Correct |
293 ms |
69920 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
16708 KB |
Output is correct |
2 |
Correct |
153 ms |
53296 KB |
Output is correct |
3 |
Correct |
180 ms |
58916 KB |
Output is correct |
4 |
Correct |
104 ms |
45424 KB |
Output is correct |
5 |
Correct |
122 ms |
49504 KB |
Output is correct |
6 |
Correct |
8 ms |
16724 KB |
Output is correct |
7 |
Correct |
9 ms |
16736 KB |
Output is correct |
8 |
Correct |
8 ms |
16724 KB |
Output is correct |
9 |
Correct |
8 ms |
16736 KB |
Output is correct |
10 |
Correct |
64 ms |
40200 KB |
Output is correct |
11 |
Correct |
62 ms |
40144 KB |
Output is correct |
12 |
Correct |
109 ms |
45500 KB |
Output is correct |
13 |
Correct |
137 ms |
49516 KB |
Output is correct |
14 |
Correct |
105 ms |
45488 KB |
Output is correct |
15 |
Correct |
124 ms |
48808 KB |
Output is correct |
16 |
Correct |
111 ms |
45492 KB |
Output is correct |
17 |
Correct |
116 ms |
48580 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
62 ms |
40164 KB |
Output is correct |
2 |
Correct |
65 ms |
40180 KB |
Output is correct |
3 |
Incorrect |
98 ms |
41328 KB |
1st lines differ - on the 1st token, expected: '21261825233649', found: '20874525940725' |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
16632 KB |
Output is correct |
2 |
Correct |
9 ms |
16724 KB |
Output is correct |
3 |
Correct |
8 ms |
16724 KB |
Output is correct |
4 |
Correct |
8 ms |
16740 KB |
Output is correct |
5 |
Correct |
8 ms |
16724 KB |
Output is correct |
6 |
Correct |
8 ms |
16724 KB |
Output is correct |
7 |
Correct |
8 ms |
16724 KB |
Output is correct |
8 |
Incorrect |
10 ms |
16724 KB |
1st lines differ - on the 1st token, expected: '2', found: '1' |
9 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
16632 KB |
Output is correct |
2 |
Correct |
9 ms |
16724 KB |
Output is correct |
3 |
Correct |
8 ms |
16724 KB |
Output is correct |
4 |
Correct |
8 ms |
16740 KB |
Output is correct |
5 |
Correct |
8 ms |
16724 KB |
Output is correct |
6 |
Correct |
8 ms |
16724 KB |
Output is correct |
7 |
Correct |
8 ms |
16724 KB |
Output is correct |
8 |
Incorrect |
10 ms |
16724 KB |
1st lines differ - on the 1st token, expected: '2', found: '1' |
9 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
16632 KB |
Output is correct |
2 |
Correct |
9 ms |
16724 KB |
Output is correct |
3 |
Correct |
8 ms |
16724 KB |
Output is correct |
4 |
Correct |
8 ms |
16740 KB |
Output is correct |
5 |
Correct |
8 ms |
16724 KB |
Output is correct |
6 |
Correct |
8 ms |
16724 KB |
Output is correct |
7 |
Correct |
8 ms |
16724 KB |
Output is correct |
8 |
Incorrect |
10 ms |
16724 KB |
1st lines differ - on the 1st token, expected: '2', found: '1' |
9 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
62 ms |
40164 KB |
Output is correct |
2 |
Correct |
65 ms |
40180 KB |
Output is correct |
3 |
Incorrect |
98 ms |
41328 KB |
1st lines differ - on the 1st token, expected: '21261825233649', found: '20874525940725' |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
103 ms |
45376 KB |
Output is correct |
2 |
Correct |
120 ms |
49632 KB |
Output is correct |
3 |
Correct |
63 ms |
40144 KB |
Output is correct |
4 |
Correct |
65 ms |
40112 KB |
Output is correct |
5 |
Correct |
214 ms |
68508 KB |
Output is correct |
6 |
Correct |
293 ms |
69920 KB |
Output is correct |
7 |
Correct |
10 ms |
16708 KB |
Output is correct |
8 |
Correct |
153 ms |
53296 KB |
Output is correct |
9 |
Correct |
180 ms |
58916 KB |
Output is correct |
10 |
Correct |
104 ms |
45424 KB |
Output is correct |
11 |
Correct |
122 ms |
49504 KB |
Output is correct |
12 |
Correct |
8 ms |
16724 KB |
Output is correct |
13 |
Correct |
9 ms |
16736 KB |
Output is correct |
14 |
Correct |
8 ms |
16724 KB |
Output is correct |
15 |
Correct |
8 ms |
16736 KB |
Output is correct |
16 |
Correct |
64 ms |
40200 KB |
Output is correct |
17 |
Correct |
62 ms |
40144 KB |
Output is correct |
18 |
Correct |
109 ms |
45500 KB |
Output is correct |
19 |
Correct |
137 ms |
49516 KB |
Output is correct |
20 |
Correct |
105 ms |
45488 KB |
Output is correct |
21 |
Correct |
124 ms |
48808 KB |
Output is correct |
22 |
Correct |
111 ms |
45492 KB |
Output is correct |
23 |
Correct |
116 ms |
48580 KB |
Output is correct |
24 |
Correct |
62 ms |
40164 KB |
Output is correct |
25 |
Correct |
65 ms |
40180 KB |
Output is correct |
26 |
Incorrect |
98 ms |
41328 KB |
1st lines differ - on the 1st token, expected: '21261825233649', found: '20874525940725' |
27 |
Halted |
0 ms |
0 KB |
- |