Submission #919628

#TimeUsernameProblemLanguageResultExecution timeMemory
919628NurislamDetecting Molecules (IOI16_molecules)C++14
Compilation error
0 ms0 KiB
#include "molecules.h"

#include <bits/stc++.h>
using namespace std;
vector<int> find_subset(int l, int u, vector<int> w) {
	int n = w.size();
	vector<pair<int,int> > res;
	for(int i = 0; i < n; i++)res.pb({w[i], i});
	sort(res.begin(), res.end());
	int l = 0, r = 0, sum = 0;
	while(r < n){
		while(sum > r){
			sum -= res[l++].first;
		}
		if(sum > l){
			vector<int> ans;
			for(int i = l; i <= r; i++){
				ans.pb(res[i].second);
			}return ans;
		}
		sum+=res[r++].first;
	}
}

Compilation message (stderr)

molecules.cpp:3:10: fatal error: bits/stc++.h: No such file or directory
    3 | #include <bits/stc++.h>
      |          ^~~~~~~~~~~~~~
compilation terminated.