# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
555802 | Alma | 은행 (IZhO14_bank) | C++17 | 39 ms | 82388 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
using ll = long long;
using ii = pair<int,int>;
const int INF = 1e9;
const ll LLINF = 1e18;
using vi = vector<int>;
using vvi = vector<vi>;
void setIO (string fileName) {
ios::sync_with_stdio(false);
cin.tie(NULL);
if (fileName != "std") {
freopen((fileName + ".in").c_str(), "r", stdin);
freopen((fileName + ".out").c_str(), "w", stdout);
}
}
int N, M;
int a[20], b[20], pre[20];
int dp[20][1 << 20];
int main() {
setIO("std");
memset(pre, 0, sizeof pre);
memset(dp, -1, sizeof dp);
dp[0][0] = 0;
cin >> N >> M;
for (int i = 0; i < N; i++) {
cin >> a[i];
if (i == 0) pre[i] = a[i];
else pre[i] = a[i] + pre[i-1];
}
for (int i = 0; i < M; i++) {
cin >> b[i];
}
for (int i = 0; i < N; i++) {
for (int mask = 0; mask < (1 << N); mask++) {
for (int p = 0; p < N; p++) {
if (!(mask & (1 << p))) continue;
int x = mask - (1 << p);
if (i > 0 and dp[i-1][x] == pre[i-1]) dp[i][mask] = dp[i-1][x] + b[p];
if (dp[i][x] != -1) dp[i][mask] = dp[i][x] + b[p];
}
}
}
for (int mask = 0; mask < (1 << N); mask++) {
if (dp[N-1][mask] != -1) {
cout << "YES\n";
return 0;
}
}
cout << "NO\n";
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... |