이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int N, M;
vector<int> salaries;
vector<int> bankNotes;
vector<vector<int> > possibleSums;
vector<vector<int> > dp;
int LSOne(int a) {
return a & (-a);
}
bool bm(int bills, int ind) {
if (ind == N) {
cout << "YES\n";
exit(0);
return true;
} else if (bills == 0) {
return false;
} else if (dp[bills][ind] != -1) {
return dp[bills][ind];
} else {
bool anyTrue = false;
for (auto bitmasks: possibleSums[salaries[ind]]) {
if ((bills & bitmasks) == bitmasks)
anyTrue = anyTrue || bm(bills ^ bitmasks, ind+1);
}
dp[bills][ind] = anyTrue;
return anyTrue;
}
}
int main() {
cin >> N >> M;
salaries.resize(N);
for (int i = 0; i < N; i++) {
cin >> salaries[i];
}
bankNotes.resize(M);
for (int i = 0; i < M; i++) {
cin >> bankNotes[i];
}
possibleSums.resize(1000 + 1);
for (int i = 0; i < (1 << M); i++) {
int currSum = 0;
for (int j = 0; j < M; j++) {
if (i & (1 << j)) {
currSum += bankNotes[j];
}
}
if (currSum <= 1000) {
possibleSums[currSum].push_back(i);
}
}
dp.resize((1 << M), vector<int>(N, -1));
bm((1 << M) - 1, 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... |