# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
968300 | tset | 은행 (IZhO14_bank) | C++14 | 366 ms | 21076 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define int long long
bool dp[21][(1<<20) +42];
signed main()
{
int nbReq, nbBillets;
scanf("%lld%lld", &nbReq, &nbBillets);
const int MX = 1<<nbBillets;
vector<int> req(nbReq);
vector<int> billets(nbBillets);
for(int i=0; i<nbReq; i++)
scanf("%lld", &req[i]);
for(int i=0; i<nbBillets; i++)
scanf("%lld", &billets[i]);
vector<vector<int>> occ(nbReq);
for(int mask=0; mask<=MX; mask++)
{
int sum = 0;
for(int iB=0; iB<nbBillets; iB++)
{
if((mask&(1<<iB)) != 0)
{
sum += billets[iB];
}
}
for(int iR =0; iR < nbReq; iR++)
{
if(req[iR] == sum)
{
occ[iR].push_back(mask);
}
}
}
dp[0][0] = true;
for(int iR =0; iR < nbReq; iR++)
{
for(int mask= 0; mask<= MX; mask++)
{
if(dp[iR][mask])
{
for(int addMask : occ[iR])
{
if((mask & addMask) == 0)
{
dp[iR+1][mask|addMask] = true;
if(iR+1 == nbReq)
{
printf("YES\n");
exit(0);
}
}
}
}
}
}
printf("NO\n");
}
컴파일 시 표준 에러 (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... |