DevSkill DCP 193 My Merit Position



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


struct point
{
    string x[200];
    double y;
};


int main()
{
    struct point a[200],b[200],tmp;
    int i,j,n,c,k;
    string st,ct[200];
    double cg;
    cin>>n;
    for(i=0;i<n;i++)
    {
        cin>>a[i].x[i]>>a[i].y;


    }

    //sort according to cgpa
    for(i=0;i<n;i++)
    {
        for(j=i+1;j<n;j++)
        {
            if(a[i].y<a[j].y)
            {
                swap(a[i].x[i],a[j].x[j]);
                swap(a[i].y,a[j].y);
            }
        }
    }
    //sort name when cgpa  same

   for(i=0;i<n;i++)
    {
        for(j=i+1;j<n;j++)
        {

            if(a[i].y==a[j].y)
            {

               if(a[i].x[i]>a[j].x[j])
               {

                   st=a[i].x[i];
                   a[i].x[i]=a[j].x[j];
                   a[j].x[j]=st;
               }


            }

        }
    }

    cg=0.0;
    c=0;
    for(i=0;i<n;i++)
    {

       if(a[i].y>cg || a[i].y<cg)
       {
           c++;
       }
       cg=a[i].y;
       cout<<c<<"."<<a[i].x[i]<<endl;


    }

    return 0;

}


Better Solution For Decreasing CPU TIME (C++ Class)

#include <bits/stdc++.h>
using namespace std;
class result
{
    string x;
    double y;
public:
    int get(result a[1000]);
};

int result::get(result a[1000])
{
    int i,j,n;
    cin>>n;
    for(i=0;i<n;i++)
    {
        cin>>a[i].x>>a[i].y;

    }
    for(i=0;i<n;i++)
    {
        for(j=i+1;j<n;j++)
        {
            if(a[i].y<a[j].y)
            {
                swap(a[i].x,a[j].x);
                swap(a[i].y,a[j].y);
            }
        }
    }
    //sort name
    for(i=0;i<n;i++)
    {
        for(j=i+1;j<n;j++)
        {
            if(a[i].y==a[j].y)
            {
                if(a[i].x>a[j].x)
                {
                    swap(a[i].x,a[j].x);
                }

            }
        }
    }
    double cg=0.0;
    int c=0;
    for(i=0;i<n;i++)
    {

       if(a[i].y>cg || a[i].y<cg)
       {
           c++;
       }
       cg=a[i].y;
       cout<<c<<"."<<a[i].x<<endl;


    }

}

int main()
{
    result a[1000],ob;
    ob.get(a);



}




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