Submission #91104

#TimeUsernameProblemLanguageResultExecution timeMemory
91104Aydarov03Bank (IZhO14_bank)C++14
71 / 100
1086 ms8060 KiB
#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include <algorithm>
using namespace std;

int a[25] , b[25];

vector <int> v[20005];
bool ui[25] , uj[25];
int n , m;


void rec( int id = 1 , int OR = 0)
{
    for(auto c : v[ a[id] ] )
    {
        if( (c & OR) == 0 )
        {
            if( id == n )
            {
                puts("YES");
                exit(0);
            }

            rec( id+1 , OR | c );
        }
    }
}



main()
{
    scanf("%d%d" , &n , &m);

    for(int i = 1; i <= n; i++)
        scanf("%d" , &a[i]);
    for(int i = 1; i <= m; i++)
        scanf("%d" , &b[i]);





    for(int mask = 1; mask < (1<<m); mask++)
    {
        int sum = 0;
        for(int i = 0; i < m; i++)
        {
            if( mask & ( (1<<i) ) )
                sum += b[i+1];
        }
        v[sum].push_back( mask );
    }

    for(int i = 1; i <= n; i++)
    {
        if( v[a[i]].size() == 0 )
        {
            puts("NO");
            return 0;
        }
    }

    rec();


    puts("NO");
}

Compilation message (stderr)

bank.cpp:33:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main()
      ^
bank.cpp: In function 'int main()':
bank.cpp:35:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d%d" , &n , &m);
     ~~~~~^~~~~~~~~~~~~~~~~~
bank.cpp:38:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d" , &a[i]);
         ~~~~~^~~~~~~~~~~~~~
bank.cpp:40:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d" , &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...