Submission #61333

# Submission time Handle Problem Language Result Execution time Memory
61333 2018-07-25T15:57:53 Z nvmdava Detecting Molecules (IOI16_molecules) C++17
0 / 100
4 ms 720 KB
#include "molecules.h"
#include <bits/stdc++.h>
using namespace std;
struct mol{
	int loc, val;
	bool operator<(const mol& rhs) const{
		return val <= rhs.val;
	}
};
vector<mol> v;
vector<int> s;

std::vector<int> find_subset(int l, int u, std::vector<int> w) {
	int i, n = w.size();
	mol tmp;
	for( i = 0; i < n; i++){
		tmp.loc = i;
		tmp.val = w[i];
		v.push_back(tmp);
	}
	
	sort(v.begin(), v.end());
	
	s.push_back(0);
	
	for(i = 0; i < n; i++){
		s.push_back(s[i] + v[i].val);
	}
	
	for( i = 1;i <=n ; i++){
		if(s[i ] > u){
			break;
		}
		if(s[n] - s[ n - i] >= l){
			break;
		}
	}
	
	if(s[i] > u){
		return std::vector<int>(0);
	}
	vector<int> ans;
	int j;
	for( j = 1; n - j - i >=0 ;j++){
		if(s[n - j] - s[n - i -j] < l){
			ans.push_back(v[n - j].loc);
			l -= v[n - j].val;
			i--;
			if(i == 0){
				break;
			}
		}
	}
	if(i != 0){
		for( i = i -1; i >= 0; i--){
			ans.push_back(v[i].loc);
		}
	}
	return ans;
}
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 248 KB Integer 2 violates the range [0, 1]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 3 ms 356 KB OK (n = 12, answer = YES)
2 Correct 4 ms 432 KB OK (n = 12, answer = YES)
3 Correct 2 ms 468 KB OK (n = 12, answer = NO)
4 Correct 2 ms 468 KB OK (n = 12, answer = NO)
5 Correct 2 ms 544 KB OK (n = 12, answer = YES)
6 Correct 2 ms 544 KB OK (n = 12, answer = YES)
7 Correct 4 ms 544 KB OK (n = 12, answer = YES)
8 Correct 2 ms 544 KB OK (n = 12, answer = YES)
9 Correct 3 ms 544 KB OK (n = 6, answer = YES)
10 Correct 3 ms 544 KB OK (n = 12, answer = YES)
11 Runtime error 2 ms 720 KB Execution killed with signal 11 (could be triggered by violating memory limits)
12 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 248 KB Integer 2 violates the range [0, 1]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 248 KB Integer 2 violates the range [0, 1]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 248 KB Integer 2 violates the range [0, 1]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 248 KB Integer 2 violates the range [0, 1]
2 Halted 0 ms 0 KB -