Submission #1031861

# Submission time Handle Problem Language Result Execution time Memory
1031861 2024-07-23T08:10:04 Z Mr_Husanboy Catfish Farm (IOI22_fish) C++17
0 / 100
56 ms 17776 KB
#include "fish.h"
#include <bits/stdc++.h>

using namespace std;

#define ff first
#define ss second
#define all(a) (a).begin(), (a).end()
#define ll long long

template<typename T>
int len(T &a){
    return a.size();
}

mt19937 rng(chrono::high_resolution_clock::now().time_since_epoch().count());


long long max_weights(int n, int m, std::vector<int> x, std::vector<int> y,
                      std::vector<int> w) {
    vector<vector<ll>> s(2, vector<ll>(n));
    for(int i = 0; i < m; i++){
        s[x[i]][y[i]] = w[i];
    }
    for(int j = 0; j < 2; j ++)
    for(int i = 1; i < n; i++) s[j][i] += s[j][i - 1];
    ll res = max(s[0][n - 1], s[1][n - 1]);
    if(n == 2) return res;

    for(int i = 1; i < n; i ++){
        res = max(res, s[0][i] + s[1][n - 1] - s[1][i]);
    }
    return res;
}
# Verdict Execution time Memory Grader output
1 Correct 14 ms 4440 KB Output is correct
2 Correct 17 ms 4956 KB Output is correct
3 Correct 1 ms 2652 KB Output is correct
4 Correct 1 ms 2652 KB Output is correct
5 Runtime error 56 ms 17776 KB Execution killed with signal 11
6 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB 1st lines differ - on the 1st token, expected: '2', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 2652 KB Output is correct
2 Runtime error 2 ms 3660 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 0 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 0 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 0 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 2652 KB Output is correct
2 Runtime error 2 ms 3660 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 14 ms 4440 KB Output is correct
2 Correct 17 ms 4956 KB Output is correct
3 Correct 1 ms 2652 KB Output is correct
4 Correct 1 ms 2652 KB Output is correct
5 Runtime error 56 ms 17776 KB Execution killed with signal 11
6 Halted 0 ms 0 KB -