Sunday, 5 October 2014

Chocolate Feast Solution Hackerrank

#include<iostream>
using namespace std;
int main() {
    int t;
    cin>>t;
    while(t--)
    {
        int n,c,m,w,total;
        cin>>n>>c>>m;
        total=n/c;
        w=total;
        while(w>=m)
        {
            total=total+w/m;
            w=w/m+w%m;
            //w+=w/m;
        }
        cout<<total<<endl;
    }
    return 0;
}

Halloween Party Solution Hackerrank

#include<iostream>
using namespace std;
int main()
    {
    int t;
    cin>>t;
    while(t--)
        {
        long k;
        cin>>k;
        if(k%2)
            cout<<k/2*(k/2+1)<<endl;
        else
            cout<<k/2*k/2<<endl;
    }
    return 0;
}

Gem Stone Solution Hackerrank

#include <iostream>
#include<string>
#include<algorithm>
#include<cstdlib>
#include<functional>
using namespace std;

int main()
{
    int n,t,total=0;
    cin>>n;
    t=n;
    string s;
    int a[26],flag[26],i=0,j=0;
    fill(a,a+26,0);
    while(j<n)
    {
        i=0;
        cin>>s;
        fill(flag,flag+26,0);
        while(s[i]!='\0')
        {
            if(!flag[int(s[i])-97])
            {
                a[int(s[i])-97]++;
                flag[int(s[i])-97]=1;
            }
            i++;
        }
        j++;
    }
    for(int i=0;i<26;i++)
    {
        if(a[i]==t)
            total++;
    }
        cout<<total;
    return 0;
}

Maximizing XOR

#include <iostream>
#include <algorithm>
using namespace std;
int maxXor(int l, int r) 
{
    int i,j,m,ans=0;
    for(i=l;i<r;i++)
        {
        for(j=i+1;j<=r;j++)
            {
            m=i^j;
            if(ans<=m)
                ans=m;
        }
    }
return ans;
}

int main() 
{
    int res;
    int _l;
    cin >> _l;
    int _r;
    cin >> _r;
    res = maxXor(_l, _r);
    cout << res;
    return 0;
}

Thursday, 3 October 2013

Candies Solution Hackerrank

#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;


int main() {
    
  int N;
  cin>>N;
  int *ar =  new int[N];
  int *ar1 = new int[N];
  for (int i=0; i<N; i++)
        cin>>ar[i];
  for (int i=0;i<N;i++)
  {
      ar1[i]=1;      
      if(i-1>=0)
      {
          if(ar[i-1]<ar[i])
            ar1[i] = ar1[i-1]+1;
          else 
          {
               int j = i;
               while(j>0 && ar[j-1] > ar[j])
               {
                ar1[j-1] = max(ar1[j-1],ar1[j] + 1);
                j= j-1;
               }          
          }
      }
  }
    int total = 0;
    for ( int i = 0; i<N ; i++){
        total += ar1[i];
    }
   cout<<total;
    /* Enter your code here. Read input from STDIN. Print output to STDOUT */   
    return 0;
}

String Similarity Solution Hackerrank

#include<iostream>
#include<string>
#include<cstdlib>
using namespace std;
int Match(const string &,const string &);
int main()
{
    int test;
    cin>>test;
    string s,s1;
    int len;
    while(test--)
    {
        int sum=0,c=0;
        cin>>s;
        len=s.length();
        int index[len];
        int i=0;
        while(s[i]!='\0')
        {
            if(s[i]==s[0])
            {
                index[c]=i;
                c++;
            }
            i++;
        }
        for(i=0;i<c;++i)
        {
            s1=s.substr(index[i],len);
            sum+=Match(s,s1);
        }
        cout<<sum<<endl;
    }
    return 0;
}


int Match(const string & str1,const string & str2)
{
     if(str1.empty() || str2.empty())
     {
          return 0;
     }
     int maxSubstr=0;
     int len=str2.size();
     for(int i=0;i<len;++i)
     {
        if(str2[i]==str1[i])
            ++maxSubstr;
        else
            return maxSubstr;

     }
     return maxSubstr;
}

Mark And Toys Solution Hackerrank

#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
    int n,k;
    cin>>n>>k;
    int a[n];
    for(int i=0;i<n;i++)
        cin>>a[i];
    sort(a,a+n);
    int s=0,i=0;
    while(s<=k)
    {
        s+=a[i];
        i++;
    }
    cout<<i-1<<endl;
    return 0;
}

Chocolate Feast Solution Hackerrank

#include<iostream> using namespace std; int main() {     int t;     cin>>t;     while(t--)     {         int n,c,m,w,tot...