Submission #133944

#TimeUsernameProblemLanguageResultExecution timeMemory
133944stoyan_malininDetecting Molecules (IOI16_molecules)C++14
Compilation error
0 ms0 KiB
#include "molecules.h" #include "grader.cpp" #include<random> //#include <algorithm> using namespace std; mt19937 rnd(6942069); const int MAXN = 2e5 + 5; int curr[MAXN]; int randInRage(int l, int r) { return l + rnd()%(r-l+1); } vector<int> find_subset(int l, int u, vector<int> w) { long long sum = 0; for(int i = 0;i<w.size();i++) { sum += w[i]; } int minValue = 1e9; for(int i = 0;i<w.size();i++) { minValue = min(minValue, w[i]); } for(int i = 0;i<w.size();i++) { if(w[i]>=l && w[i]<=u) { return vector <int>{i}; } } if(sum<l) return vector <int>{}; if(u<minValue) return vector <int>{}; vector <int> answer; vector <pair <int, int>> v; for(int i = 0;i<w.size();i++) { if(w[i]<=u) v.push_back({w[i], i}); } sort(v.begin(), v.end()); long long tries = 0; while(true) { tries++; if(tries>1e7 + 5e6) break; sum = 0; int index = 0; int length = 0; while(sum<=u && index<v.size()) { tries++; index = randInRage(index, v.size()-1) + 1; curr[length] = v[index-1].second;length++; sum += v[index-1].first; if(sum>=l && sum<=u) { break; } } if(sum>=l && sum<=u) { for(int i = 0;i<length;i++) { answer.push_back(curr[i]); } return answer; } } while(true) { tries++; if(tries*w.size()>1e7 + 5e6) break; sum = 0; shuffle(v.begin(), v.end(), rnd); for(int i = 0;i<v.size();i++) { sum += v[i].first; if(sum>=l && sum<=u) { for(int j = 0;j<=i;j++) { answer.push_back(v[j].second); } return answer; } if(sum>u) { break; } } } return vector<int>{}; }

Compilation message (stderr)

molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:22:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(int i = 0;i<w.size();i++)
                   ~^~~~~~~~~
molecules.cpp:28:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(int i = 0;i<w.size();i++)
                   ~^~~~~~~~~
molecules.cpp:33:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(int i = 0;i<w.size();i++)
                   ~^~~~~~~~~
molecules.cpp:47:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(int i = 0;i<w.size();i++)
                   ~^~~~~~~~~
molecules.cpp:52:5: error: 'sort' was not declared in this scope
     sort(v.begin(), v.end());
     ^~~~
molecules.cpp:52:5: note: suggested alternative: 'qsort'
     sort(v.begin(), v.end());
     ^~~~
     qsort
molecules.cpp:64:30: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         while(sum<=u && index<v.size())
                         ~~~~~^~~~~~~~~
molecules.cpp:95:9: error: 'shuffle' was not declared in this scope
         shuffle(v.begin(), v.end(), rnd);
         ^~~~~~~
molecules.cpp:97:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         for(int i = 0;i<v.size();i++)
                       ~^~~~~~~~~