이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/** @BY_KUTBILIM **/
#include <bits/stdc++.h>
using namespace std;
#define ff first
#define ss second
#define pb push_back
#define ll long long
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).end()
int main(){
ios_base::sync_with_stdio(false);
cin.tie();
int n, m;
cin >> n >> m;
int a[n], b[m];
for(int i = 0; i < n; i++)cin >> a[i];
int sum = 0;
for(int j = 0; j < m; j++){
cin >> b[j];
sum += b[j];
}
if(n == 1){
vector<int> dp(sum+10, 0);
dp[0] = 1;
for(int i = 0; i < m; i++){
for(int j = sum; j >= b[i]; j--){
if(dp[j-b[i]])dp[j] = 1;
}
}
if(dp[n])cout << "YES\n";
else cout << "NO\n";
} else{
vector<int> index;
for(int i = 0; i < m; i++){
index.pb(i);
}
bool ok = false;
do{
int j = 0;
for(int i = 0; i < n; i++){
if(j == m)break;
int num = a[i];
while(j < m and b[index[j]] <= num){
num -= b[index[j]];
}
if(num != 0)break;
if(num == 0 and i == n - 1)ok = true;
}
if(ok)break;
}while(next_permutation(all(index)));
if(ok)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... |