이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
bool canp(int n, int m, vector<int>& a, vector<int>& b) {
sort(a.rbegin(), a.rend());
sort(b.rbegin(), b.rend());
vector<bool> used(m, false);
function<bool(int)> backtrack = [&](int idx) {
if (idx == n) {
return true;
}
int ca = a[idx];
function<bool(int, int)> dfs = [&](int start, int total) {
if (total == ca) {
if (backtrack(idx + 1)) {
return true;
}
return false;
}
if (total > ca) {
return false;
}
int prev = -1;
for (int i = start; i < m; i++) {
if (!used[i] && total + b[i] <= ca) {
if (b[i] == prev) {
continue;
}
used[i] = true;
if (dfs(i + 1, total + b[i])) {
return true;
}
used[i] = false;
prev = b[i];
}
}
return false;
};
return dfs(0, 0);
};
return backtrack(0);
}
int main() {
int n, m;
cin >> n >> m;
vector<int> a(n);
vector<int> b(m);
for (int i = 0; i < n; i++) {
cin >> a[i];
}
for (int i = 0; i < m; i++) {
cin >> b[i];
}
int ta = accumulate(a.begin(), a.end(), 0);
int tb = accumulate(b.begin(), b.end(), 0);
if (ta > tb) {
cout << "NO" << endl;
return 0;
}
if (canp(n, m, a, b)) {
cout << "YES" << endl;
} else {
cout << "NO" << endl;
}
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... |