답안 #282561

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
282561 2020-08-24T14:55:37 Z BeanZ Detecting Molecules (IOI16_molecules) C++14
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
#include "molecules.h"

using namespace std;
#define ll long long
#define endl '\n'
const int N = 10005;
const int mod = 1e9 + 7;
vector<ll> find_subset(ll l, ll u, vector<ll> w){
        vector<ll> res;
        vector<pair<ll, ll>> a;
        for (int i = 0; i < w.size(); i++){
                a.push_back({w[i], i});
        }
        sort(a.begin(), a.end());
        ll lf = 0, sum = 0;
        for (int i = 0; i < w.size(); i++){
                sum = sum + a[i].first;
                while (sum > u){
                        sum -= a[lf].first;
                        lf++;
                }
                if (sum >= l){
                        for (int j = lf; j <= i; j++){
                                res.push_back(a[j].second);
                        }
                        return res;
                }
        }
}
/*
int main(){
        ios_base::sync_with_stdio(false);
        cin.tie(0);
        if (fopen("VietCT.INP", "r")){
                freopen("VietCT.INP", "r", stdin);
                freopen("VietCT.OUT", "w", stdout);
        }
}
*/

Compilation message

molecules.cpp: In function 'std::vector<long long int> find_subset(long long int, long long int, std::vector<long long int>)':
molecules.cpp:12:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   12 |         for (int i = 0; i < w.size(); i++){
      |                         ~~^~~~~~~~~~
molecules.cpp:17:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   17 |         for (int i = 0; i < w.size(); i++){
      |                         ~~^~~~~~~~~~
molecules.cpp:11:30: warning: control reaches end of non-void function [-Wreturn-type]
   11 |         vector<pair<ll, ll>> a;
      |                              ^
/tmp/ccNAJpGA.o: In function `main':
grader.cpp:(.text.startup+0x12b): undefined reference to `find_subset(int, int, std::vector<int, std::allocator<int> >)'
collect2: error: ld returned 1 exit status