이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define int long long
#define pii pair<int,int>
#define fi first
#define se second
using namespace std;
using ll = long long;
using ldb = long double;
const int N = (int)1e8;
const int maxN = (int)3e5 + 1;
const int mod = 998244353;
void InputFile()
{
//freopen("scrivener.inp","r",stdin);
//freopen("scrivener.out","w",stdout);
//freopen("test.out","r",stdin);
}
void FastInput()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
}
int n,m;
int a[maxN];
int b[maxN];
int dp[(1 << 21)];
void Read()
{
cin >> n >> m;
for(int i = 0;i < n;i++)
cin >> a[i];
for(int i = 0;i < m;i++)
cin >> b[i];
}
void Solve()
{
for(int i = 0;i < (1 << m);i++)
{
dp[i] = -1;
}
dp[0] = 0;
for(int i = 0;i < n;i++)
{
for(int mask = 0;mask < (1 << m);mask++)
{
if(dp[mask] != -1)
{
for(int j = 0;j < m;j++)
{
if(!(mask & (1 << j)))
{
dp[mask | (1 << j)] = dp[mask] + b[j];
}
}
}
}
for(int mask = 0;mask < (1 << m);mask++)
{
if(dp[mask] == a[i])
{
dp[mask] = 0;
}
else dp[mask] = -1;
}
}
for(int mask = 0;mask < (1 << m);mask++)
{
if(dp[mask] == 0)
{
cout <<"YES";
return;
}
}
cout <<"NO";
}
void Debug()
{
//Main_sub();
//Naive();
}
int32_t main()
{
FastInput();
//InputFile();
//int sub_type;
//cin >> sub_type;
//Sieve();
int test;
//cin >> test;
test = 1;
while(test--)
//for(int prc = 1; prc <= test; prc++)
{
Read();
Solve();
//Debug();
}
}
# | 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... |