이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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++) {
while (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... |