이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
# include <bits/stdc++.h>
# define speed ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0)
# define int long long
# define fi first
# define se second
using namespace std;
const int N = 2e5 + 7;
const int mod = 1e9 + 7;
const int INF = 1e18 + 7;
int a[N], b[N], n, m;
vector < int > vc[N];
string ans = "NO";
void rec( int i, int mask ) {
if ( i == n + 1 ) {
ans = "YES";
return;
}
for ( auto msk: vc[i] ) {
if ( (msk & mask) == 0 ) {
rec( i + 1, msk | mask );
}
}
}
int32_t main() {
speed;
cin >> n >> m;
for ( int i = 1; i <= n; i++ ) {
cin >> a[i];
}
for ( int i = 0; i < m; i++ ) {
cin >> b[i];
}
for ( int i = 1; i <= n; i++ ) {
for ( int mask = 0; mask < (1 << m); mask++ ) {
int cnt = 0;
for ( int j = 0; j < m; j++ ) {
if ( (mask >> j) & 1 ) {
cnt += b[j];
}
}
if ( cnt == a[i] ) {
vc[i].push_back(mask);
}
}
}
rec(1, 0);
cout << ans;
}
# | 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... |