Submission #233610

# Submission time Handle Problem Language Result Execution time Memory
233610 2020-05-21T05:27:59 Z pere_gil Detecting Molecules (IOI16_molecules) C++14
0 / 100
5 ms 256 KB
#include <iostream>
#include "molecules.h"
#include <vector>
using namespace std;

std::vector<int> find_subset(int l, int u, std::vector<int> w){
    long long n=w.size();
    long long tot=1<<n;
    vector<int> res;
    for(int i=0;i<tot;i++){
        long long sum=0;
        res.clear();
        for(int j=0;j<n;j++){
            if(i&(1<<j)){
                sum+=w[j];
                res.push_back(j);
            }
        }
        if(sum>=l and sum<=u){ break; }
    }
    return res;
}
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 256 KB sum of weights should be in [10..12] but it is 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 5 ms 256 KB OK (n = 12, answer = YES)
2 Correct 5 ms 256 KB OK (n = 12, answer = YES)
3 Incorrect 5 ms 256 KB sum of weights should be in [307..317] but it is 606
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 256 KB sum of weights should be in [10..12] but it is 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 256 KB sum of weights should be in [10..12] but it is 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 256 KB sum of weights should be in [10..12] but it is 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 256 KB sum of weights should be in [10..12] but it is 9
2 Halted 0 ms 0 KB -