Submission #977400

# Submission time Handle Problem Language Result Execution time Memory
977400 2024-05-07T21:22:47 Z sstojilkovic19 Detecting Molecules (IOI16_molecules) C++14
0 / 100
1 ms 348 KB
#include "molecules.h"
#include <bits/stdc++.h>
using namespace std;

std::vector<int> find_subset(int l, int u, std::vector<int> w) {
    //return std::vector<int>(0);

    int leva=-1, desna=-1;
    vector<int>ans;
    //sort(w.begin(), w.end());
    int n = w.size();
    vector<int>pref(n+5, 0);
    for(int i = 1; i<=n; i++)pref[i]=pref[i-1]+w[i-1];

    for(int i = 1; i<=n; i++)
    {
        for(int j = 1; j<=i; j++)
        {
            int s = pref[i]-pref[j-1];
            if(s>=l && s<=u)
            {
                desna = i;
                leva = j;
                break;
            }
        }
    }

    if(leva==-1 && desna==-1)
        return vector<int>(0);
    else
    {
        for(int i = leva; i<=desna; i++)ans.push_back(w[i-1]);
        return ans;
    }
}
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB OK (n = 1, answer = NO)
2 Correct 0 ms 348 KB OK (n = 1, answer = NO)
3 Incorrect 1 ms 348 KB Integer 10 violates the range [0, 0]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Integer 50 violates the range [0, 11]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB OK (n = 1, answer = NO)
2 Correct 0 ms 348 KB OK (n = 1, answer = NO)
3 Incorrect 1 ms 348 KB Integer 10 violates the range [0, 0]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB OK (n = 1, answer = NO)
2 Correct 0 ms 348 KB OK (n = 1, answer = NO)
3 Incorrect 1 ms 348 KB Integer 10 violates the range [0, 0]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB OK (n = 1, answer = NO)
2 Correct 0 ms 348 KB OK (n = 1, answer = NO)
3 Incorrect 1 ms 348 KB Integer 10 violates the range [0, 0]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB OK (n = 1, answer = NO)
2 Correct 0 ms 348 KB OK (n = 1, answer = NO)
3 Incorrect 1 ms 348 KB Integer 10 violates the range [0, 0]
4 Halted 0 ms 0 KB -