제출 #919644

#제출 시각아이디문제언어결과실행 시간메모리
919644NurislamDetecting Molecules (IOI16_molecules)C++14
컴파일 에러
0 ms0 KiB
#include "molecules.h" #include <bits/stdc++.h> using namespace std; #define pb push_back vector<int> find_subset(int l, int u, vector<int> w) { int n = w.size(); pair<int,int> rw[n]; for(int i = 0; i < n; i++)rw[i] = {w[i], i}; sort(rw, rw+n); long long s = 0, sum = 0; vector<int> ans; for(int i = 0; i < n; i++){ sum+=rw[i].first; while(sum > u)sum-=rw[s++].first; if(sum >= l){ for(int j = s; j <= i; j++)ans+=rw[i].second; return ans; } } return ans; }

컴파일 시 표준 에러 (stderr) 메시지

molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:17:34: error: no match for 'operator+=' (operand types are 'std::vector<int>' and 'int')
   17 |    for(int j = s; j <= i; j++)ans+=rw[i].second;
      |                               ~~~^~~~~~~~~~~~~~