-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathladder.cpp
More file actions
70 lines (64 loc) · 1.71 KB
/
Copy pathladder.cpp
File metadata and controls
70 lines (64 loc) · 1.71 KB
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
// 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 --------------------------------
ll ans=25;
void solve(ll mask, ll curr, ll count, ll target, ll x[], ll n){
int flag=0;
for(int j=0 ; j<n ; j++){
if( (1<<j) & mask == 0){
flag++;
}
}
if(flag){
ans=min(ans,count);
return;
}
cout<<"a";
for(int j=0 ; j<n ; j++){
if((1<<j) & mask == 0){
cout<<"a"<<x[j]<<target<<" ";
if(x[j]+curr <= target){
mask=mask^(1<<j);
cout<<mask<<" ";
solve(mask,curr+x[j],count,target,x,n);
mask=mask^(1<<j);
}
else{
mask=mask^(1<<j);
solve(mask,x[j],count+1,target,x,n);
mask=mask^(1<<j);
}
}
}
}
void royale_paradox()
{
ll n,x;
cin>>n>>x;
ll a[n];
for(ll i=0 ; i<n ; i++)cin>>a[i];
solve(0,0,1,x,a,n);
cout<<ans;
}
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;
}