# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
892419 | I_FloPPed21 | 은행 (IZhO14_bank) | C++14 | 1047 ms | 25172 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int n, m ;
int v[ 21 ], b [ 21 ] ;
bool dp [21 ] [ 1200000 ];
int main()
{
cin >> n >> m ;
for ( int i = 1; i <= n ; i ++ )
{
cin >> v[ i ] ;
}
for ( int i = 1; i <= m ; i ++ )
cin >> b[ i ] ;
vector<int> posib [ n + 1] ;
memset(dp, false, sizeof dp );
for ( int i = 1 ; i <= n ; i ++ )
{
for ( int j = 0 ; j < ( 1 << m ) ; j ++ )
{
int sum = 0 ;
for ( int f = 1 ; f <= m ; f ++ )
{
if ( j & ( 1 << ( f - 1 ) ) )
sum += b[ f ] ;
}
if ( sum == v[ i ] )
{
posib [ i ] .push_back( j ) ;
}
}
}
dp [ 0 ][ 0 ] = true ;
for ( int i = 1; i <= n ; i ++ )
{
for ( int j = 0 ; j < ( 1 << m ) ; j ++ )
{
if ( dp [ i - 1 ] [ j ] == true )
{
for (int k = 0 ; k < posib [ i ] .size() ; k ++ )
{
if ( (( j ) & ( posib [ i ][ k ] )) == 0 )
{
int val = (posib [ i ][ k ] | ( j ));
dp [ i ] [ val ] = true ;
if ( i == n )
{
cout << "YES" << '\n';
return 0 ;
}
}
}
}
}
}
cout << "NO" << '\n';
return 0;
}
컴파일 시 표준 에러 (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... |