# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
172430 | abacaba | 은행 (IZhO14_bank) | C++14 | 1012 ms | 20984 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// #pragma GCC optimize("O3,unroll-loops")
// #pragma GCC target("avx,avx2,fma")
#include <iostream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <cstring>
#include <chrono>
#include <vector>
#include <map>
#include <random>
#include <set>
#include <algorithm>
#include <math.h>
#include <cstdio>
#include <stdio.h>
#include <queue>
#include <bitset>
#include <cstdlib>
#include <deque>
#include <cassert>
#include <stack>
using namespace std;
#define max3(a, b, c) max(a, max(b, c))
#define min3(a, b, c) min(a, min(b, c))
#define mp make_pair
#define f first
#define se second
#define pb push_back
#define ppb pop_back
#define ll long long
#define y1 abcde
#define ull unsigned long long
#define cntbit(x) __builtin_popcount(x)
#define endl '\n'
#define uset unordered_set
#define umap unordered_map
#define all(x) x.begin(), x.end()
#define pii pair<int, int>
#define ld long double
#define pll pair<long long, long long>
const int inf = 2e9;
const int mod = 1e9 + 7;
const int N = 20;
int n, m, a[N], b[N], tot;
int sum[1 << N];
bool dp[N + 1][1 << N];
main() {
scanf("%d %d", &n, &m);
tot = (1 << m) - 1;
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)
for(int i = 0; i < m; ++i)
if((1 << i) & mask)
sum[mask] += b[i];
for(int i = 0; i < n; ++i) {
for(int mask = 0; mask < (1 << m); ++mask) {
if(sum[mask] != a[i])
continue;
for(int cur_mask = tot ^ mask; ; cur_mask = ((cur_mask - 1) & (tot ^ mask))) {
if(i == 0 || dp[i-1][cur_mask])
dp[i][mask | cur_mask] = true;
if(cur_mask == 0)
break;
}
}
}
for(int mask = 0; mask < (1 << m); ++mask)
if(dp[n-1][mask])
return puts("YES"), 0;
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... |