이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define ff first
#define ss second
#define all(x) x.begin(), x.end()
#define pb push_back
#define ertunt return
#define vodka void
using namespace std;
ll n,m;
ll a[21];
ll b[21];
bool yes;
bool vis[21];
vodka dfs(ll x){
if(x > n-1){
yes = true;
ertunt;
}
for(ll i = 0; i < m; i++){
if(vis[i] == false){
if(b[i] <= a[x]){
a[x]-=b[i];
vis[i] = true;
if(a[x] == 0)dfs(x+1);
else dfs(x);
vis[i] = false;
a[x]+=b[i];
}
}
}
}
int main(){
cin >> n >> m;
if(n == 1){
ll d;
cin >> d;
ll b[m+1];
for(ll j = 1; j <= m; j++)cin >> b[j];
for(ll i = 1; i <= (1<<m); i++){
ll res = 0;
for(ll j = 0; j < m; j++){
if(i&(1<<j)){
res+=b[j];
}
}
if(res == d){
cout << "YES";
ertunt 0;
}
}
cout << "NO";
ertunt 0;
}
for(ll i = 0; i < n; i++) cin >> a[i];
for(ll i = 0; i < m; i++) cin >> b[i];
sort(a,a+n);
sort(b,b+m);
dfs(0);
if(yes)cout << "YES\n";
else cout << "NO";
}
# | 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... |