Submission #525895

#TimeUsernameProblemLanguageResultExecution timeMemory
525895buidangnguyen05Detecting Molecules (IOI16_molecules)C++17
0 / 100
1 ms332 KiB
/* input

*/

#include<bits/stdc++.h>
using namespace std;

typedef long long ll;
const int N = 2e5 + 10;

deque<int> find_subset(int l, int r, vector<int> w) {
	int n = w.size(); 
	pair<int, int> a[n + 1];
	for (int i = 0; i < n; ++i) a[i] = make_pair(w[i], i);
  	return deque<int>(1, n);
	sort (a, a + n);
	ll cur = 0; deque<int> ans;
	int R = n - 1;
	for (; ~R; --R) {
		cur += a[R].first; ans.push_back(a[R].second);
		if (cur >= l && cur <= r) return ans;
		if (cur >= r) break;
	}

	int L = 0;
	while (L < R && cur > r) {
		cur -= w[ans.back()]; ans.pop_back();
		cur += a[L].first; ans.push_front(a[L++].second);
	}

	if (cur > r) return deque<int>(0);
	return ans;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...