1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#include<cstdio>
#include<vector>
#include<algorithm>
#include<set>
#include<iostream>


using namespace std;

#define rep(i,n) for(int i=0; i<(int)n; i++)
#define st first
#define nd second
#define mp make_pair
#define pb push_back

typedef vector<int> vi;
typedef pair<int,int> pi;
typedef vector<pi> vpii;
typedef set<int> SI;
typedef long long LL;

#ifdef DEBUG
const bool debug = true;
#else
const bool debug = false;
#endif
int n,m,k,l;
const int inf = 1000 * 1000 * 1000 ;
const int MAKSN = 30; // UZUPElnic


int ans = inf;
vector<LL> v, plec;

void readIn()
{
	l = scanf("%d%d",&n,&m);

	rep(i,n)
	{
		l = scanf("%d",&k);
		v.pb(k);
	}

	rep(i,m)
	{
		l = scanf("%d",&k);
		plec.pb(k);
	}
}

int przydzial[MAKSN] = {0};
LL suma[MAKSN] = {0};

void zerujSuma()
{
	rep(i,v.size())
		suma[i] = 0;
}

bool czyAktPrzydzial()
{
	zerujSuma();

	rep(i,v.size())
	{
		suma[przydzial[i]] += v[i];
	}

	rep(i,v.size())
	{
		if(suma[i] > plec[i])
			return false;
	}

	return true;
}

bool check(int poz, int iloscPl)
{
	bool ans = false;
	if(poz == (int)v.size()-1)
	{
		for(int i=0; i<iloscPl;i++)
		{
			przydzial[poz] = i;
			if(czyAktPrzydzial())
				ans = true;
		}
	}
	else
	{
		for(int i=0; i<iloscPl; i++)
		{
			przydzial[poz] = i;

			if(check(poz+1, iloscPl))
				ans = true;
		}
	}
	return ans;
}

bool isOk(int ile)
{
	if(check(0,ile)) return true;
	return false;
}


void solve()
{
	sort(v.begin(),v.end());
	sort(plec.begin(),plec.end());
	reverse(plec.begin(),plec.end());
	reverse(v.begin(),v.end());

	plec.resize(n);

// 	rep(i,plec.size())
// 	{
// 		printf("%lld\n",plec[i]);
// 	}

	for(int i=1; i<=n; i++)
	{
// 			printf("AHSA %d\n",i);
		if(isOk(i))
		{
			ans = i;
			break;
		}
	}

	if(ans == inf)
		printf("NIE\n");
	else
	{
		printf("%d\n",ans);
	}
}

int main()
{
	readIn();
	solve();
	return 0;
}