# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
656371 | the_ilyas | 은행 (IZhO14_bank) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
using namespace std;
#define ff first
#define ss second
#define pb push_back
#define all(a) a.begin(), a.end()
#define rall(a) a.rbegin(), a.rend()
const int N = 100001;
int dp[N];
signed main(){
ios::sync_with_stdio(0); cin.tie(0);
int n, m; cin >> n >> m;
int A[n];
for(int i = 0; i < n; i++) {
cin >> A[i];
}
int M[m];
for(int i = 0; i < m; i++)
cin >> M[i];
dp[0] = 1;
for(int i = 1; i <= 10000; i++) {
for(int j = 0; j < m; j++) {
if(i - M[j] >= 0) {
dp[i] = dp[i - M[j]];
}
}
}
if(accumulate(dp, dp + N, 0) == n)
cout << "YES";
else
cout << "NO";
return 0;
}