답안 #319344

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
319344 2020-11-05T01:37:13 Z barsbold Detecting Molecules (IOI16_molecules) C++14
컴파일 오류
0 ms 0 KB
#include "molecules.h"
#include <bits/stdc++.h>
using namespace std;

std::vector<int> find_subset(int l, int u, std::vector<int> w) {
	sort(w.begin(), w.end());
	int n = w.size();
	int l =0;
	int r = 0;
	long long sum = w[0];
	vector<int > ans;
	while(r <n){
		while(sum >u){
			sum-=w[l];
			l++;
		}
		if(sum >= l){
			for(int i = l; i<=r; i++){
				ans.push_back(w[i]);
			}
			break;
		}
	}
	if(!ans.size()){
		ans.push_back(0);
	}
	return ans;
}

Compilation message

molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:8:6: error: declaration of 'int l' shadows a parameter
    8 |  int l =0;
      |      ^