# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
91059 | YottaByte | 은행 (IZhO14_bank) | C++14 | 49 ms | 672 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
using namespace std;
const int N = 20 + 1;
#define ll long long
#define ok puts("OK");
int n, m, a[N], mx, cc;
int b[N], d[20001], dp[1 << N];
string tr(int a, int b)
{
string res = "";
while(a)
{
res += char(a % b + '0');
a /= b;
}
while(res.size() < m)
{
res += '0';
}
return res;
}
void calc(int mask, int p = 0, int c = 0, int last = 0)
{
//cout << tr( mask, 2 ) << " " << c << endl;
//cout << tr( p, 2 ) << " " << c << endl;
//system("pause");
cc = max(cc, c);
if(c == n)
{
puts("YES");
exit(0);
}
for(int i = last; i < m; i++)
{
if(!( mask & ( 1 << i )))
{
if(!( p & ( 1 << i )))
{
int tomask = ( mask | ( 1 << i ));
int sum = 0;
for(int i = 0; i < m; i++)
if( tomask & ( 1 << i ))
sum += b[i];
if(sum < a[c])
{
//puts("Try");
calc( tomask, p, c, i);
}
else if(sum == a[c])
{
//puts("Gotcha");
dp[tomask] = c + 1;
calc( 0, tomask, c + 1, 0);
}
}
}
}
}
main()
{
scanf("%d %d", &n, &m);
for(int i = 0; i < n; i++)
scanf("%d", &a[i]);
for(int i = 0; i < m; i++)
scanf("%d", &b[i]), mx += b[i];
d[0] = 1;
for(int i = 0; i < m; i++)
for(int j = mx; j >= b[i]; j--)
if(d[j - b[i]])
d[j] = 1;
for(int i = 0; i < n; i++)
{
if(a[i] == 0)
{
puts("NO");
return 0;
}
}
calc(0);
//cout << cc << endl;
puts("NO");
}
/**
1 5
8
4 2 5 1 3
2 6
9 11
6 8 3 5 4 10
2 6
9 11
6 8 3 5 2 10
**/
컴파일 시 표준 에러 (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... |