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>
#define ll long long
#define pb push_back
using namespace std;
ll n, x, m;
int main() {
//freopen("divide.in", "r", stdin);
//freopen("divide.out", "w", stdout);
cin >> n >> m;
vector<ll> v, vvv;
for (int i = 0; i < n; i++) {
cin >> x;
v.pb(x);
}
for (int i = 0; i < m; i++) {
cin >> x;
vvv.pb(x);
}
bool tru = true;
for (int i = 0; i < n; i++) {
bool bar = false;
for (int j = 0; j < m; j++) {
x = v[i];
for (int k = j; k < m; k++) {
if (x - vvv[k] >= 0) x -= vvv[k];
if (x == 0) {
bar = true;
break;
}
}
if (bar) break;
}
if (bar == false) {
tru = false;
break;
}
}
if (tru) cout << "YES";
else cout << "NO";
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... |