Skip to content
Programmingoneonone
Programmingoneonone
  • Home
  • CS Subjects
    • Internet of Things (IoT)
    • Digital Communication
    • Human Values
  • Programming Tutorials
    • C Programming
    • Data structures and Algorithms
    • 100+ Java Programs
    • 100+ C Programs
  • HackerRank Solutions
    • HackerRank Algorithms Solutions
    • HackerRank C problems solutions
    • HackerRank C++ problems solutions
    • HackerRank Java problems solutions
    • HackerRank Python problems solutions
  • Work with US
Programmingoneonone
Programmingoneonone

HackerEarth Sum of Numbers problem solution

YASH PAL, 31 July 2024
In this HackerEarth Sum of Numbers problem solution, we have given an array of N elements, check if it is possible to obtain a sum of S, by choosing some (or none) elements of the array and adding them.
HackerEarth Sum of Numbers problem solution

HackerEarth Sum of Numbers problem solution.

#include<bits/stdc++.h>
using namespace std;
#define ll long long int
ll arr[20];
void combinationUtil(ll arr[],ll n,ll r,ll index,ll data[],ll i);
void printCombination(ll arr[], ll n, ll r)
{
ll data[r];
combinationUtil(arr, n, r, 0, data, 0);
}
ll ans,flag;
void combinationUtil(ll arr[], ll n, ll r, ll index, ll data[], ll i)
{
if(index == r)
{
ll sum=0;
for (ll j=0; j<r; j++)//sum up all the items being included in the set
sum+=data[j];
if(sum==ans)//check against sum
flag=1;
return;
}
if (i >= n)//if number of elements exceeds N
return;
data[index] = arr[i];//set element
combinationUtil(arr, n, r, index+1, data, i+1);//item is being included
combinationUtil(arr, n, r, index, data, i+1);//item is not included
}
int main()
{
ll a,b,i,j,num,loop_sum;
int test;
scanf("%d",&test);
while(test--)
{
flag=0;
scanf("%lld",&num);
for(i=0;i<num;i++)
scanf("%lld",&arr[i]);
scanf("%lld",&ans);
for(ll r=0;r<=num;r++)
printCombination(arr,num,r);
if(flag==1)
printf("YESn");
else
printf("NOn");
}
}

Second solution

#include <bits/stdc++.h>
using namespace std;

int main()
{
int t;cin>>t;
while(t--){
int n; cin>>n; int a[n+5];
for(int i=0;i<n;i++) cin>>a[i];
int s,i,j; cin>>s;
for(i=0;i<(1<<n);i++){
int x=0;
for(j=0;j<n;j++){
if(i & (1<<j)) x+=a[j];
}
if(x==s){
cout<<"YESn"; break;
}
}
if(i==(1<<n)) {cout<<"NOn";}
}
return 0;
}
coding problems solutions

Post navigation

Previous post
Next post

Related website

The Computer Science

Pages

  • About US
  • Contact US
  • Privacy Policy

Programing Practice

  • C Programs
  • java Programs

HackerRank Solutions

  • C
  • C++
  • Java
  • Python
  • Algorithm

Other

  • Leetcode Solutions
  • Interview Preparation

Programming Tutorials

  • DSA
  • C

CS Subjects

  • Digital Communication
  • Human Values
  • Internet Of Things
  • YouTube
  • LinkedIn
  • Facebook
  • Pinterest
  • Instagram
©2025 Programmingoneonone | WordPress Theme by SuperbThemes