-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDP_2.cpp
55 lines (49 loc) · 1.35 KB
/
DP_2.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
// On a road to becoming a expert on my own before September ends :')
#include<bits/stdc++.h>
#define IOS ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0)
#define ll long long int
#define pb push_back
#define mp make_pair
#define GCD(m,n) __gcd(m,n)
#define ln "\n"
#define LCM(m,n) m*(n/GCD(m,n))
#define mod 1000000007
#define MOD 998244353
#define PI 3.14159265
#define iterator vector<vector<int>>::iterator
using namespace std;
// -------------------------- Never Give Up --------------------------------
void royale_paradox()
{
ll n,x;
cin>>n>>x;
ll coins[n];
for(ll i=0 ; i<n ; i++)cin>>coins[i];
ll table[x+1];
table[0]=0;
for(ll i=1 ; i<=x ; i++){
table[i]=1e18+5;
}
for(ll i=1 ; i<=x ; i++){
for(ll j=0 ; j<n ; j++){
if(i-coins[j]>=0){
ll res=table[i-coins[j]];
if(res != 1e18+5 && table[i] > 1+res){
table[i]=1+res;
}
}
}
}
if(table[x] == 1e18+5)cout<<"-1";
else cout<< table[x];
}
signed main()
{
IOS;
//freopen("input.txt", "r", stdin); // to be uncommented when I/P
//freopen("output.txt", "w", stdout); // & O/P are in file format
ll TC=1;
// cin>>TC;
while(TC--){royale_paradox();}
return 0;
}