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 main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n, m;
cin >> n >> m;
int salary[n], billet[m];
for(int loop = 0; loop < n; ++loop) {
cin >> salary[loop];
}
for(int loop = 0; loop < m; ++loop) {
cin >> billet[loop];
}
vector<int> paid((1 << m), -1);
vector<int> leftover((1 << m), -1);
paid[0] = 0;
leftover[0] = 0;
for(int loop = 0; loop < (1 << m); ++loop) {
for(int looping = 0; looping < m; ++looping) {
if((loop & (1 << looping)) == 0) {
continue;
}
int avant = (loop & ~(1 << looping));
if(paid[avant] == -1) {
continue;
}
int pers = salary[paid[avant]];
if(leftover[avant] + billet[looping] < pers) {
leftover[loop] = leftover[avant] + billet[looping];
paid[loop] = paid[avant];
}
else if(leftover[avant] + billet[looping] == pers) {
leftover[loop] = 0;
paid[loop] = paid[avant] + 1;
}
}
if(paid[loop] == n) {
cout << "YES\n";
return 0;
}
}
cout << "NO\n";
}
# | 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... |