#include "fish.h"
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
long long max_weights(int N, int M, std::vector<int> X, std::vector<int> Y,
std::vector<int> W) {
i64 s[N];
map<pair<int, int>, int> f;
for (int i = 0; i < M; i++) {
s[X[i]] += W[i];
f[{X[i], Y[i]}] = W[i];
}
if (N == 2) {
return max(s[0], s[1]);
}
vector pre(2, vector<i64>(N + 1));
for (int i = 0; i < 2; i++) {
for (int j = 0; j < N; j++) {
pre[i + 1][j] = pre[i][j] + f[{i, j}];
}
}
i64 ans = 0;
for (int i = 0; i <= N; i++) {
ans = max(ans, pre[1][N] - pre[1][i] + pre[0][i]);
}
return ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
56 ms |
19852 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
340 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
28 ms |
17840 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
340 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
340 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
340 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
28 ms |
17840 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
56 ms |
19852 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |