This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int, int>;
using pll = pair<long long, long long>;
const ll INF = numeric_limits<ll>::max();
const int inf = numeric_limits<int>::max();
const char nl = '\n', sp = ' ';
bool f(int id, int mask, ll val, int N, vector<ll> &salary, vector<ll> &billz, set<pll> &vis,vector<vector<bool> > &dp){
if(vis.count({mask,val})){
return dp[mask][val];
} else {
if(id == N){
return true;
} else if(val == 0){
return f(id + 1,mask,salary[id + 1], N, salary, billz, vis,dp);
} else {
vis.insert({mask,val});
int mx = upper_bound(billz.begin(),billz.end(), val) - billz.begin();
bool flag = false;
for(int i = 0; i < mx; i++){
if((mask & (1 << i)) != 0){
if(val - billz[i] >= 0){
flag = flag | f(id, mask ^ (1 << i),val - billz[i],N, salary,billz, vis,dp);
}
}
}
dp[mask][val] = flag;
return dp[mask][val];
}
}
}
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
int N, M;
cin >> N >> M;
vector<vector<bool> > dp((1 << 20), vector<bool>(1000,false));
vector<ll> salary;
vector<ll> billz;
ll num;
for(int i = 0; i < N; i++){
cin >> num;
salary.push_back(num);
}
for(int i = 0; i < M; i++){
cin >> num;
billz.push_back(num);
}
sort(billz.begin(),billz.end());
int mask = (1 << M) - 1;
set<pll> vis;
bool ans = f(0,mask,salary[0], N ,salary, billz, vis,dp);
if(ans){
cout << "YES" << nl;
} else {
cout << "NO" << nl;
}
}
# | 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... |