Submission #588879

#TimeUsernameProblemLanguageResultExecution timeMemory
588879mahra_IOIDetecting Molecules (IOI16_molecules)C++17
Compilation error
0 ms0 KiB
#include "molecyles.h"
#include <bits/bits/stdc++.h>
using namespace std;

vector<int> find_subset(int l, int u, vector<int> w) {
    int n = w.size();
    for(int take = 1 ; take <= n;take++){
            if(take * w[0] >= l && take * w[0] <= u){
                vector< int > ans;
                for(int j = 0 ;j < take;j++)
                    ans.push_back(j);
                return ans;
            }
    }
    return vector<int>(0);
}

Compilation message (stderr)

molecules.cpp:1:10: fatal error: molecyles.h: No such file or directory
    1 | #include "molecyles.h"
      |          ^~~~~~~~~~~~~
compilation terminated.