Result: Accepted
Time: 1ms
Memory: 1092kB
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
#include<stdio.h>
int main()
{
int m,n,t;
scanf("%d",&t);
int s[101],min,max;
int i,j;
int p,q,r;
while(t--)
{
scanf("%d %d",&n,&m);
for(j=0;j<m;j++)
{
scanf("%d",&s[j]);
}
q=0;
r=0;
min=s[0];
p=0;
max=0;
for(j=0;j<m;j++)
{
if(s[j]>max)
max=s[j];
}
while(n>0&&r<m)
{
min=max;
for(j=0;j<m;j++)
{
if(s[j]!=0&&s[j]<min)
{
min=s[j];
p=j;
}
}
n=n-min;
if(n<0)
break;
else
{
s[p]=0;
q++;
r++;
}
}
printf("%d\n",q);
}
}