이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cmath>
#include <vector>
#include <map>
#include <set>
#include <algorithm>
#define int long long
#define ff first
#define ss second
#define taskname ""
#define maxn 20
using namespace std;
int dp[(1<<20)],d[1<<20];
int a[20],b[20];
int n,m;
bool checkbit(int i, int j)
{
return i>>j&1;
}
signed main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr); cout.tie(nullptr);
// freopen(taskname".in","r",stdin);
// freopen(taskname".out","w",stdout);
cin>>n>>m;
for (int i=0; i<n; i++) cin>>a[i];
for (int j=0; j<m; j++) cin>>b[j];
for (int i=0; i<(1<<m); i++) dp[i]=d[i]=-1;
dp[0]=d[0]=0;
for (int i=1; i<(1<<m); i++)
{
for (int j=0; j<m; j++)
{
if (!checkbit(i,j)) continue;
int i2=i^(1<<j);
if (d[i2]==-1) continue;
int val=b[j]+d[i2];
int x=a[dp[i2]];
if (val<x)
{
dp[i]=dp[i2];
d[i]=val;
}
else
if (val==x)
{
dp[i]=dp[i2]+1;
d[i]=0;
}
}
if (dp[i]==n)
{
cout<<"YES";
return 0;
}
}
cout<<"NO";
}
# | 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... |