이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 2e5 + 5, M = 1e6 + 6, mod = 998244353;
vector<int> mask[22];
int a[22], b[22];
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
// freopen("bank.in","r",stdin);
//freopen("bank.out","w",stdout);
int n, m;
cin >> n >> m;
for (int i = 0; i < n; ++i) {
cin >> a[i];
}
for (int i = 0; i < m; ++i) {
cin >> b[i];
}
for (int i = 0; i < n; ++i) {
for (int j = 0; j < (1 << m); ++j) {
int sum = 0;
for (int k = 0; k < m; ++k) {
sum += b[k] * ((j >> k) & 1);
}
if (sum == a[i])
mask[i].push_back(j);
}
}
vector<int> masks;
masks.push_back(0);
for (int i = 0; i < n; ++i) {
vector<int> _masks;
for (auto x: mask[i]) {
for (auto y: masks) {
if (!(x & y)) {
_masks.push_back(x | y);
}
}
}
masks = _masks;
}
cout << (masks.empty() ? "NO":"YES");
}
# | 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... |