# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
37843 | Just_Solve_The_Problem | 은행 (IZhO14_bank) | C++11 | 194 ms | 1784 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
const int N = (int)22;
const int NN = (1 << 20);
int a[N], b[N];
bool used[NN];
int n, m;
vector < int > vec[N];
void go (int pos, int mask) {
if (used[mask]) return ;
used[mask] = 1;
if (pos == n) {
puts("YES");
exit(0);
}
for (int to : vec[pos]) {
if (mask & to) continue;
go(pos + 1, mask | to);
}
}
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);
}
for (int mask = 0; mask < (1 << m); mask++) {
int sum = 0;
for (int j = 0; j < m; j++) {
if (mask & (1 << j)) {
sum += b[j];
}
}
for (int j = 0; j < n; j++) {
if (sum == a[j]) {
vec[j].pb(mask);
}
}
}
go(0, 0);
puts("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... |