#include <bits/stdc++.h>
#pragma GCC optimize("O3")
#pragma GCC target("avx2")
#include "fish.h"
#define ll long long
#define ar array
#define sz(x) (int)x.size()
#define all(x) x.begin(), x.end()
using namespace std;
const ll INF = 1e18;
template<typename T> bool ckmin(T &a, const T &b ) { return a > b ? a = b, 1 : 0; }
template<typename T> bool ckmax(T &a, const T &b ) { return a < b ? a = b, 1 : 0; }
long long max_weights(int n, int m, std::vector<int> x, std::vector<int> y, std::vector<int> w) {
vector<vector<ar<ll, 2>>> each(n);
for (int i = 0; i < m; i++) {
each[x[i]].push_back({y[i], w[i]});
}
for (int i = 0; i < n; i++) {
sort(all(each[i]));
vector<ar<ll, 2>> nw;
bool F = 0;
ll s = 0;
for (int j = 0; j < sz(each[i]); j++) {
if (!each[i][j][0]) F = 1;
nw.push_back({each[i][j][0] - 1, s});
s += each[i][j][1];
}
if (!F) nw.push_back({-1, 0});
nw.push_back({n - 1, s});
sort(all(nw));
swap(each[i], nw);
}
vector<vector<ll>> dp;
auto query = [&](int pos, int x) {
return prev(upper_bound(all(each[pos]), ar<ll, 2>{x, LLONG_MAX})) - each[pos].begin();
};
vector<vector<ar<int, 3>>> val(n);
for (int i = 0; i < n; i++) {
val[i].resize(sz(each[i]));
for (int k = 0; k < sz(each[i]); k++) {
for (int j = -1; j <= 1; j++) {
if (i + j >= 0 && i + j < n) {
val[i][k][j+1] = query(i + j, each[i][k][0]);
}
}
}
}
for (int i = 0; i < n; i++) {
vector<vector<ll>> dp2;
const int N = sz(each[i]);
dp2.resize(i ? sz(each[i-1]) : 1, vector<ll>(N, -INF));
if (!i) {
for (int j = 0; j < N; j++) {
dp2[0][j] = 0;
}
swap(dp, dp2);
}
else {
for (int j = 0; j < sz(dp); j++) {
for (int k = 0; k < sz(dp[j]); k++) {
for (int l = 0; l < N; l++) {
int L = k, R = max(i-2 >= 0 ? val[i-2][j][2] : 0, val[i][l][0]);
ckmax(dp2[k][l], dp[j][k] + (L <= R ? each[i-1][R][1] - each[i-1][L][1] : 0));
}
}
}
swap(dp, dp2);
}
}
ll ans = -INF;
for (int i = 0; i < sz(dp); i++) {
for (int j = 0; j < sz(dp[i]); j++) {
int L = j, R = val[n-2][i][2];
ckmax(ans, dp[i][j] + (L <= R ? each[n-1][R][1] - each[n-1][L][1] : 0));
}
}
return ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
60 ms |
22112 KB |
Output is correct |
2 |
Correct |
84 ms |
25896 KB |
Output is correct |
3 |
Correct |
24 ms |
12888 KB |
Output is correct |
4 |
Correct |
28 ms |
12892 KB |
Output is correct |
5 |
Correct |
201 ms |
40876 KB |
Output is correct |
6 |
Correct |
142 ms |
37348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
1st lines differ - on the 1st token, expected: '2', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
24 ms |
12892 KB |
Output is correct |
2 |
Correct |
25 ms |
12892 KB |
Output is correct |
3 |
Correct |
42 ms |
14092 KB |
Output is correct |
4 |
Correct |
35 ms |
14556 KB |
Output is correct |
5 |
Correct |
58 ms |
17232 KB |
Output is correct |
6 |
Correct |
53 ms |
16720 KB |
Output is correct |
7 |
Correct |
53 ms |
17216 KB |
Output is correct |
8 |
Correct |
59 ms |
17280 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
1st lines differ - on the 1st token, expected: '3', found: '2' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
1st lines differ - on the 1st token, expected: '3', found: '2' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
1st lines differ - on the 1st token, expected: '3', found: '2' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
24 ms |
12892 KB |
Output is correct |
2 |
Correct |
25 ms |
12892 KB |
Output is correct |
3 |
Correct |
42 ms |
14092 KB |
Output is correct |
4 |
Correct |
35 ms |
14556 KB |
Output is correct |
5 |
Correct |
58 ms |
17232 KB |
Output is correct |
6 |
Correct |
53 ms |
16720 KB |
Output is correct |
7 |
Correct |
53 ms |
17216 KB |
Output is correct |
8 |
Correct |
59 ms |
17280 KB |
Output is correct |
9 |
Incorrect |
61 ms |
21820 KB |
1st lines differ - on the 1st token, expected: '99999', found: '66666' |
10 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
60 ms |
22112 KB |
Output is correct |
2 |
Correct |
84 ms |
25896 KB |
Output is correct |
3 |
Correct |
24 ms |
12888 KB |
Output is correct |
4 |
Correct |
28 ms |
12892 KB |
Output is correct |
5 |
Correct |
201 ms |
40876 KB |
Output is correct |
6 |
Correct |
142 ms |
37348 KB |
Output is correct |
7 |
Incorrect |
0 ms |
348 KB |
1st lines differ - on the 1st token, expected: '2', found: '1' |
8 |
Halted |
0 ms |
0 KB |
- |