Submission #683151

#TimeUsernameProblemLanguageResultExecution timeMemory
683151JuanDetecting Molecules (IOI16_molecules)C++14
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> using namespace std; #define pii pair<int, int> #define ff first #define ss second vector<int> ans; vector<pii> arr; int ll, uu; bool dp(int id, int sum){ if(sum>uu) return false; if(sum>=ll && sum<=uu) return true; for(int i = id; i < arr.size(); i++){ if(dp(i+1, sum+arr[i].ff)){ ans.push_back(arr[i].ss); return true; } } return false; } int[] find_subset(int l, int u, int[] w){ ll = l, uu = u; for(int i = 0; i < sizeof w; i++) arr.push_back({w[i], i}); sort(arr.begin(), arr.end(), greater<pii>()); dp(0, 0); return ans; }

Compilation message (stderr)

molecules.cpp: In function 'bool dp(int, int)':
molecules.cpp:14:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   14 |  for(int i = id; i < arr.size(); i++){
      |                  ~~^~~~~~~~~~~~
molecules.cpp: At global scope:
molecules.cpp:23:4: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   23 | int[] find_subset(int l, int u, int[] w){
      |    ^
molecules.cpp:23:4: error: structured binding declaration cannot have type 'int'
   23 | int[] find_subset(int l, int u, int[] w){
      |    ^~
molecules.cpp:23:4: note: type must be cv-qualified 'auto' or reference to cv-qualified 'auto'
molecules.cpp:23:4: error: empty structured binding declaration
molecules.cpp:23:7: error: expected initializer before 'find_subset'
   23 | int[] find_subset(int l, int u, int[] w){
      |       ^~~~~~~~~~~