답안 #1073271

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1073271 2024-08-24T11:30:40 Z fv3 메기 농장 (IOI22_fish) C++17
0 / 100
23 ms 8336 KB
#include "fish.h"
#include <bits/stdc++.h>

using namespace std;
typedef long long ll;

ll max_weights(int N, int M, vector<int> X, vector<int> Y, vector<int> W) 
{
    vector<vector<ll>> ps(2, vector<ll>(N));

    for (int i = 0; i < N; i++)
    {
        ps[X[i]][Y[i]] = W[i];
    }
    ll suml = 0, sumr = 0;
    for (int i = 0; i < N; i++)
    {
        suml += ps[0][i];
        ps[0][i] = suml;
        sumr += ps[1][i];
        ps[1][i] = sumr;
    }

    ll res = 0;
    for (int i = 0; i < N; i++)
        res = max(res, ps[0][i] + ps[1][N-1] - ps[1][i]);

    return res;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 23 ms 8336 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB 1st lines differ - on the 1st token, expected: '2', found: '1'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 4 ms 3660 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 4 ms 3660 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 23 ms 8336 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -