UVA 674 Coin Change





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

int coinchange(int S[], int m, int n )
{

    int table[n+1];
    memset(table, 0, sizeof(table));

    table[0] = 1;

    for(int i=0; i<m; i++)
    {

        for(int j=S[i]; j<=n; j++)
        {
             table[j] += table[j-S[i]];

        }

    }

    return table[n];
}

int main()
{
    int coin[] = {1,5,10,25,50};
    int m =5;
    int n;
    while(cin>>n)
    {
       cout<<coinchange(coin,m,n)<<endl;
    }

    return 0;
}

Download Coding Interview Book and Get More Tutorials for Coding and Interview Solution: Click Here

Download System Design Interview Book and Get More Tutorials and Interview Solution: Click Here

Do you need more Guidance or Help? Then Book 1:1 Quick Call with Me: Click Here

Share on Google Plus

About Ashadullah Shawon

I am Ashadullah Shawon. I am a Software Engineer. I studied Computer Science and Engineering (CSE) at RUET. I Like To Share Knowledge. Learn More: Click Here
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment