Submission #90083

#TimeUsernameProblemLanguageResultExecution timeMemory
90083Rashidov_AnisBank (IZhO14_bank)C++14
71 / 100
1083 ms624 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]; void dfs( ll x, ll sum, ll state, ll k, ll num ){ if( x > n ){ printf( "YES" ); exit( 0 ); } if( sum == 0 ){ dfs( x + 1, a[x + 1], state, 1, 0 ); } bool mx = 0; for( int i = k; i <= m; i ++ ){ if( m - num - 1 < n - x )break; if( sum < b[i] || ( state >> i ) & 1 == 1 )continue; dfs( x, sum - b[i], ( state | ( 1 << i ) ), i + 1, num + 1 ); } } main(){ //TIME; //fin( "bank.in" ); //fout( "bank.out" ); scanf( "%I64d%I64d", &n, &m ); for( int i = 1; i <= n; i ++ ){ scanf( "%I64d", &a[i] ); } for( int i = 1; i <= m; i ++ ){ scanf( "%i64d", &b[i] ); } dfs( 1, a[1], 0, 1, 0 ); printf( "NO" ); }

Compilation message (stderr)

bank.cpp: In function 'void dfs(long long int, long long int, long long int, long long int, long long int)':
bank.cpp:37:46: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
         if( sum < b[i] || ( state >> i ) & 1 == 1 )continue;
                                            ~~^~~~
bank.cpp:34:10: warning: unused variable 'mx' [-Wunused-variable]
     bool mx = 0;
          ^~
bank.cpp: At global scope:
bank.cpp:42:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main(){
      ^
bank.cpp: In function 'int main()':
bank.cpp:46:33: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'long long int*' [-Wformat=]
     scanf( "%I64d%I64d", &n, &m );
                          ~~     ^
bank.cpp:46:33: warning: format '%d' expects argument of type 'int*', but argument 3 has type 'long long int*' [-Wformat=]
bank.cpp:48:31: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'long long int*' [-Wformat=]
         scanf( "%I64d", &a[i] );
                         ~~~~~ ^
bank.cpp:50:59: warning: format '%i' expects argument of type 'int*', but argument 2 has type 'long long int*' [-Wformat=]
     for( int i = 1; i <= m; i ++ ){ scanf( "%i64d", &b[i] ); }
                                                     ~~~~~ ^
bank.cpp:46:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf( "%I64d%I64d", &n, &m );
     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
bank.cpp:48:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf( "%I64d", &a[i] );
         ~~~~~^~~~~~~~~~~~~~~~~~
bank.cpp:50:42: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     for( int i = 1; i <= m; i ++ ){ scanf( "%i64d", &b[i] ); }
                                     ~~~~~^~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...