답안 #833324

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
833324 2023-08-22T04:34:44 Z tengiz05 메기 농장 (IOI22_fish) C++17
0 / 100
56 ms 19852 KB
#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 -