Submission #959981

#TimeUsernameProblemLanguageResultExecution timeMemory
959981okkooDetecting Molecules (IOI16_molecules)C++17
Compilation error
0 ms0 KiB
#include <iostream> #include <vector> #include <algorithm> #include <molecule.h> using namespace std; #define fastIO ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); #define ll long long vector<int> find_subset(ll l, ll u, vector<int> w){ fastIO; vector<pair<int, int> > vt; int n = w.size(); for(int i=0; i<n; i++){ vt.push_back({w[i], i}); } sort(vt.begin(), vt.end()); int start = 0; ll curSum = 0; vector<int> ans; for(int i=0; i<n; i++){ curSum += w[i]; while(curSum > u){ curSum -= w[start]; start++; } if(curSum >= l){ while(start <= i){ ans.push_back(start); start++; } return ans; } } return {0}; }

Compilation message (stderr)

molecules.cpp:4:10: fatal error: molecule.h: No such file or directory
    4 | #include <molecule.h>
      |          ^~~~~~~~~~~~
compilation terminated.