-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1049.cpp
72 lines (68 loc) · 1.27 KB
/
1049.cpp
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
#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<map>
#include<set>
#include<queue>
#include<vector>
#define IL inline
#define re register
#define LL long long
#define ULL unsigned long long
#define re register
using namespace std;
template<class T>inline void read(T&x)
{
char ch=getchar();
while(!isdigit(ch))ch=getchar();
x=ch-'0';ch=getchar();
while(isdigit(ch)){x=x*10+ch-'0';ch=getchar();}
}
inline int read()
{
int x=0;
char ch=getchar();
while(!isdigit(ch))ch=getchar();
x=ch-'0';ch=getchar();
while(isdigit(ch)){x=x*10+ch-'0';ch=getchar();}
return x;
}
int G[55];
template<class T>inline void write(T x)
{
int g=0;
do{G[++g]=x%10;x/=10;}while(x);
for(re int i=g;i>=1;--i)putchar('0'+G[i]);putchar('\n');
}
int n,V,minans;
int sum[40],v[40];
void dfs(int least,int depth)
{
if(depth>=n){
if(least<minans) minans=least;
return;
}
// if(least-v[depth]<0){
// if(least<minans) minans=least;
// return;
// }²»ÖªµÀΪʲôWAÁË
if(least-v[depth]>=0) dfs(least-v[depth],depth+1);
dfs(least,depth+1);
}
IL bool cmp(int a,int b)
{
return a>b;
}
int main()
{
V=read();
n=read();
for(int i=0;i<n;i++) v[i]=read();
minans=V+1;
sort(v,v+n,cmp);
dfs(V,0);
cout<<minans;
return 0;
}