I'm trying the classic subset sum problem on an online judge. However, the difference this time is that n<=30 so the maximum operations can go up to 30*2^30. I already have some working code below. However, the time limit of the program is 1 second and my program hovers between 0.5 to 1.1 seconds. This results in a TLE although I've tried to speed up my code as best as I can. Do you guys have any tips on how I might be able to speed up and optimise my code further? Thanks in advance.
#include <iostream>
#include <cstdio>
using namespace std;
unsigned power(unsigned x, unsigned y){ //pow function
unsigned sum=x;
for (int i=1;i<=y-1;i++)
sum*=x;
return sum;
}
int main(){
unsigned t, n, p, sum, sum2, tmpsum=0;
unsigned bars[32];
bool found;
scanf("%u", &t);
while (t--){
tmpsum=0;
found=false;
scanf("%u %u", &n, &p);
for (int i=0;i<p;i++){
scanf("%u",&bars[i]);
tmpsum+=bars[i];
}
if (tmpsum<n)found=false;
unsigned end=power(2,p)-1; //counting from the end and from the start
for (unsigned i=0;i<power(2,p)&&tmpsum>=n;i++){ //counting from 1 to 2^n in binary
sum=0;
sum2=0;
for (unsigned j=0;j<p;j++){
if (i&(1<<j))
sum+=bars[j];
if (end&(1<<j)) //counting from the end and start at the same time
{sum2+=bars[j];end--;}
}
if (sum==n||sum2==n)
{found=true;break;}
}
cout<<(found==true?"YES":"NO")<<endl;
}
}

