# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
16939 | erdemkiraz | 은행 (IZhO14_bank) | C++98 | 121 ms | 4756 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define type(x) __typeof((x).begin())
#define foreach(it, x) for(type(x) it = (x).begin(); it != (x).end(); it++)
typedef long long ll;
typedef pair < int, int > ii;
const int inf = 1e9 + 333;
const ll linf = 1e18 + inf;
const int N = 20;
const int MAX = 1 << 20;
int n, m;
int a[N], b[N], dp[MAX];
int f(int mask, int x, int sum) {
if(x == n)
return 1;
int &r = dp[mask];
if(r != -1)
return r;
r = 0;
for(int i = 0; i < m; i++) {
if(!(mask & 1 << i) and sum + b[i] <= a[x]) {
if(sum + b[i] == a[x])
r |= f(mask | 1 << i, x + 1, 0);
else
r |= f(mask | 1 << i, x, sum + b[i]);
}
}
return r;
}
int main() {
scanf("%d %d", &n, &m);
for(int i = 0; i < n; i++)
scanf("%d", a + i);
for(int i = 0; i < m; i++)
scanf("%d", b + i);
memset(dp, -1, sizeof(dp));
if(f(0, 0, 0))
puts("YES");
else
puts("NO");
return 0;
}
컴파일 시 표준 에러 (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... |