답안 #724331

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
724331 2023-04-15T06:00:03 Z nihaddhuseynli 메기 농장 (IOI22_fish) C++17
0 / 100
24 ms 9840 KB
#include "fish.h"
#include <bits/stdc++.h>
#include <vector>
using namespace std;
typedef long long int ll;
long long max_weights(int N, int M, std::vector<int> X, std::vector<int> Y,std::vector<int> W) {
    ll ans =0;
    
        ans=0;
        ll b[2][300005];
        memset(b,0,sizeof(b));
        for(int i =0;i<M;i++){
            b[X[i]][Y[i]] += W[i];
        }
        for(int i =1;i<N-1;i++){
            b[0][i] += b[0][i - 1];
            b[1][i] += b[1][i - 1];
        }
        ans = max(b[0][N - 1], b[1][N - 1]);
        if(N == 2) return ans;
        for(int i =0;i<N;i++)
        {
            long long val = b[1][N - 1] - b[1][i];
            ans=max(ans, val + b[0][i]);
        }
        return ans;

}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 24 ms 6868 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '40312711037206'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 4948 KB 1st lines differ - on the 1st token, expected: '2', found: '1'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 3 ms 4948 KB Output is correct
2 Runtime error 7 ms 9840 KB Execution killed with signal 7
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 7 ms 9812 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 7 ms 9812 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 7 ms 9812 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 3 ms 4948 KB Output is correct
2 Runtime error 7 ms 9840 KB Execution killed with signal 7
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 24 ms 6868 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '40312711037206'
2 Halted 0 ms 0 KB -