#include "fish.h"
#include<bits/stdc++.h>
using namespace std;
#define ll long long// !
#define sz(a) (int)a.size()
#define all(a) a.begin(),a.end()
#define F first
#define S second
const int MAXN = 1e5 + 3;
ll max_weights(int n, int m, vector<int> X, std::vector<int> Y, vector<int> W) {
// dp[i][j], for i'th column just before the j'th element
vector<pair<int, int>> pos[MAXN];
for (int i = 0; i < m; i++){
pos[X[i]+1].push_back({Y[i], W[i]});
}
vector<ll> dp[MAXN];
for (int i = 0; i <= n; i++){
pos[i].push_back({MAXN, 0});
sort(all(pos[i]));
dp[i].resize(sz(pos[i]), 0ll);
}
for (int i = 1; i <= n; i++){
for (int j = 0; j < sz(dp[i]); j++){
ll& me = dp[i][j];
ll cnt = 0;
for (int k = sz(dp[i - 1]) - 1; k >= 0; k--){
if (pos[i - 1][k].F <= pos[i][j].F - 1) cnt += pos[i - 1][k].S;
me = max(me, cnt + dp[i-1][k]);
}
if (i == n){
int p = sz(pos[i]) - 1;
ll cnt2 = 0;
cnt = 0;
for (int k = j; k < sz(pos[i]); k++) cnt2 += pos[i][k].S;
for (int k = sz(dp[i - 1]) - 1; k >= 0; k--){
if (pos[i - 1][k].F <= pos[i][j].F - 1) cnt += pos[i - 1][k].S;
while (p >= j && pos[i - 1][k].F - 1 < pos[i][p].F){
cnt2 -= pos[i][p].S;
p--;
}
me = max(me, cnt2 + cnt + dp[i-1][k]);
}
}
}
}
for (int i = 0; i <= n/2; i++){
swap(pos[i], pos[n-i]);
}
for (int i = 0; i <= n; i++){
dp[i].resize(sz(pos[i]), 0ll);
}
for (int i = 1; i <= n; i++){
for (int j = 0; j < sz(dp[i]); j++){
ll& me = dp[i][j];
ll cnt = 0;
for (int k = sz(dp[i - 1]) - 1; k >= 0; k--){
if (pos[i - 1][k].F <= pos[i][j].F - 1) cnt += pos[i - 1][k].S;
me = max(me, cnt + dp[i-1][k]);
}
if (i == n){
int p = sz(pos[i]) - 1;
ll cnt2 = 0;
cnt = 0;
for (int k = j; k < sz(pos[i]); k++) cnt2 += pos[i][k].S;
for (int k = sz(dp[i - 1]) - 1; k >= 0; k--){
if (pos[i - 1][k].F <= pos[i][j].F - 1) cnt += pos[i - 1][k].S;
while (p >= j && pos[i - 1][k].F - 1 < pos[i][p].F){
cnt2 -= pos[i][p].S;
p--;
}
me = max(me, cnt2 + cnt + dp[i-1][k]);
}
}
}
}
ll ans = 0;
for (auto it : dp[n]){
ans = max(ans, it);
}
return ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
43 ms |
14520 KB |
1st lines differ - on the 1st token, expected: '40313272768926', found: '80626545537852' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4956 KB |
Output is correct |
2 |
Execution timed out |
1090 ms |
17036 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
14 ms |
11608 KB |
1st lines differ - on the 1st token, expected: '10082010', found: '20164020' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4956 KB |
Output is correct |
2 |
Correct |
4 ms |
4956 KB |
Output is correct |
3 |
Correct |
3 ms |
4956 KB |
Output is correct |
4 |
Correct |
3 ms |
4956 KB |
Output is correct |
5 |
Incorrect |
3 ms |
4956 KB |
1st lines differ - on the 1st token, expected: '8866', found: '16621' |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4956 KB |
Output is correct |
2 |
Correct |
4 ms |
4956 KB |
Output is correct |
3 |
Correct |
3 ms |
4956 KB |
Output is correct |
4 |
Correct |
3 ms |
4956 KB |
Output is correct |
5 |
Incorrect |
3 ms |
4956 KB |
1st lines differ - on the 1st token, expected: '8866', found: '16621' |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4956 KB |
Output is correct |
2 |
Correct |
4 ms |
4956 KB |
Output is correct |
3 |
Correct |
3 ms |
4956 KB |
Output is correct |
4 |
Correct |
3 ms |
4956 KB |
Output is correct |
5 |
Incorrect |
3 ms |
4956 KB |
1st lines differ - on the 1st token, expected: '8866', found: '16621' |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
14 ms |
11608 KB |
1st lines differ - on the 1st token, expected: '10082010', found: '20164020' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
43 ms |
14520 KB |
1st lines differ - on the 1st token, expected: '40313272768926', found: '80626545537852' |
2 |
Halted |
0 ms |
0 KB |
- |