This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
int n, m;
vector<int>people, banknotes;
vector<short>table;
short rec(int indx, int mask, int cur_people){
if(indx == n)return 1;
if(cur_people < 0)return 0;
if(cur_people == 0){
indx++;
if(indx == n)return 1;
cur_people = people[indx];
}
bool res = 0;
if(table[mask] != -1)return table[mask];
for(int i = 0;i < m;++i){
if(mask & (1 << i)){
res = res | rec(indx, mask ^ (1 << i), cur_people - banknotes[i]);
}
}
return table[mask] = res;
}
int main()
{
cin >> n >> m;
people.resize(n);
banknotes.resize(m);
table.assign((1 << m), -1);
for(int i = 0;i < n;++i)cin >> people[i];
for(int i = 0;i < m;++i)cin >> banknotes[i];
if(rec(0, (1 << m) - 1, people[0])){
cout << "YES";
}
else{
cout << "NO";
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |