Submission #90064

#TimeUsernameProblemLanguageResultExecution timeMemory
90064Rashidov_AnisBank (IZhO14_bank)C++14
71 / 100
1079 ms736 KiB
#include <bits/stdc++.h> #define fr first #define se second #define sc scanf #define pf printf #define ld long double #define ll long long #define pb push_back #define sq(n) n * n #define r_0 return 0 #define pr pair < ll, ll > #define prr pair < pair < ll, ll >, ll > #define fin(s) freopen( s, "r", stdin ) #define fout(s) freopen( s, "w", stdout ) #define TIME ios_base::sync_with_stdio(0) using namespace std; const ll INF = 1e9; const ll N = 2e3 + 3; const ll mod = 998244353; const ld eps = 1e-7; ll n, m; ll b[N], a[N]; bool dfs( ll x, ll sum, ll state, ll k ){ if( x > n ){ return 1; } if( sum == 0 ){ return dfs( x + 1, a[x + 1], state, 0 ); } bool mx = 0; for( int i = k; i <= m; i ++ ){ if( sum < b[i] || ( state >> i ) & 1 == 1 )continue; mx = max( dfs( x, sum - b[i], ( state | ( 1 << i ) ), i + 1 ), mx ); } return mx; } main(){ TIME; //fin( "bank.in" ); //fout( "bank.out" ); cin >> n >> m; for( int i = 1; i <= n; i ++ ){ cin >> a[i]; } for( int i = 1; i <= m; i ++ )cin >> b[i]; ll x = dfs( 1, a[1], 0, 1 ); if( x == 0 ){ cout << "NO"; } else cout << "YES"; }

Compilation message (stderr)

bank.cpp: In function 'bool dfs(long long int, long long int, long long int, long long int)':
bank.cpp:35:46: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
         if( sum < b[i] || ( state >> i ) & 1 == 1 )continue;
                                            ~~^~~~
bank.cpp: At global scope:
bank.cpp:41:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main(){
      ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...