# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
258833 | karma | 은행 (IZhO14_bank) | C++14 | 82 ms | 8572 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb emplace_back
#define ll long long
#define fi first
#define se second
#define mp make_pair
//#define int int64_t
using namespace std;
const int N = 1 << 20 | 1;
const int inf = 1e9 + 1;
typedef pair<int, int> pii;
pii f[N];
int n, m, a[30], b[30];
int32_t main() {
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
#define Task "test"
if(fopen(Task".inp", "r")) {
freopen(Task".inp", "r", stdin);
freopen(Task".out", "w", stdout);
}
cin >> n >> m; a[n] = inf;
for(int i = 0; i < n; ++i) cin >> a[i];
for(int i = 0; i < m; ++i) cin >> b[i];
f[0] = {0, 0};
for(int i = 0; i < (1 << m); ++i) {
if(f[i].fi >= n && f[i].se == 0) return cout << "YES", 0;
for(int j = 0; j < m; ++j) {
if(i >> j & 1) continue;
if(f[i].se + b[j] > a[f[i].fi]) continue;
if(f[i].se + b[j] == a[f[i].fi]) {
f[i ^ (1 << j)] = {f[i].fi + 1, 0};
continue;
}
f[i ^ (1 << j)] = {f[i].fi, f[i].se + b[j]};
}
}
cout << "NO";
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |