이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int, int>;
#define mp make_pair
#define F first
#define S second
constexpr int maxn = 20;
int n, m;
int a[maxn];
int b[maxn];
pii note[1 << maxn]; // (can pay 1...k, leftover l)
int main() {
// ios_base::sync_with_stdio(false);
// cin.tie(NULL);
bool ans = false;
cin >> n >> m;
for (int i = 0; i < n; i++) cin >> a[i];
for (int i = 0; i < m; i++) cin >> b[i];
for (int notes = 0; notes < (1 << m); notes++) {
if (notes == 0) {
note[notes] = mp(-1, 0);
continue;
}
pii ansp = mp(-1, 0);
for (int i = 0; i < m; i++) {
if (!(notes & (1 << i))) continue;
int prevnote = notes - (1 << i);
int k = -1, l = -1;
if (note[prevnote].S + b[i] == a[note[prevnote].F + 1]) {
k = note[prevnote].F + 1;
l = 0;
} else {
k = note[prevnote].F;
l = note[prevnote].S + b[i];
}
// if (k > ansp.F) ansp = mp(k, l);
ansp = max(ansp, mp(k, l));
}
note[notes] = ansp;
// cout << bitset<5>(notes).to_string() << " : " << note[notes].F << '\t' << note[notes].S <<
// '\n';
if (ansp.F == n - 1) {
ans = true;
break;
}
}
cout << (ans ? "YES\n" : "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... |