molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:15:2: error: 'll' was not declared in this scope
ll sum=0,id=0;
^~
molecules.cpp:15:2: note: suggested alternative: 'l'
ll sum=0,id=0;
^~
l
molecules.cpp:17:3: error: 'sum' was not declared in this scope
sum+=p[i].ff;
^~~
molecules.cpp:26:4: error: 'id' was not declared in this scope
id=i-1;
^~
molecules.cpp:26:4: note: suggested alternative: 'i'
id=i-1;
^~
i
molecules.cpp:31:5: error: 'id' was not declared in this scope
if(id==0){
^~
molecules.cpp:34:12: error: 'id' was not declared in this scope
for(int i=id;i>=1;i--){
^~
molecules.cpp:34:12: note: suggested alternative: 'i'
for(int i=id;i>=1;i--){
^~
i
molecules.cpp:35:3: error: 'sum' was not declared in this scope
sum=sum-p[i].ff;
^~~