이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int n, m;
int a[1005], b[1005];
int sum[(1 << 20) + 5], nr_bit[(1 << 20) + 5];
unordered_set <int> poss[1005], sol;
pair <int, int> c[1005];
int main()
{
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 j = 0; j < (1 << m); j++) {
for (int k = 0; k < m; k++)
if (j & (1 << k)) {
sum[j] += b[k];
nr_bit[j]++;
}
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < (1 << m); j++) {
if (sum[j] == a[i])
poss[i].insert(j);
}
c[i] = {poss[i].size(), i};
}
sort(c, c + n);
for (int j : poss[c[0].second])
sol.insert(j);
for (int i = 1; i < n; i++) {
unordered_set <int> aux;
for (int j : poss[c[i].second])
for (int k : sol)
if (nr_bit[j] + nr_bit[k] == nr_bit[j | k])
aux.insert(j | k);
sol = aux;
if (sol.size() == 0) {
cout << "NO\n";
return 0;
}
}
if (sol.size())
cout << "YES\n";
else cout << "NO\n";
return 0;
}
# | 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... |