Posts

Showing posts from October, 2020

Chef and Bored Games

Question :           Chef and Bored Games                            Problem Code:  PCJ18B

Download file

  Question :      Download file  (Codechef Problem)                        Problem Code:  DWNLD Solution in C++ : #include <iostream> using namespace std; int main() { int tc; //testcase cin>>tc; for(int j=0;j<tc;j++) {     int number,k,temp=0,net,price=0;     cin>>number>>k;     for(int i=0;i<number;i++)     {         int t,d;    //time and data         cin>>t>>d;         temp=temp+t;         if(temp>k)         {             net = temp-k;             if(net<t){                 price=net*d;             }             else                 price=price+(t*d);         }     }     cout<<price<<"\n"; } return 0; }  

Buying New Tablet

Question :      Buying New Tablet  (Codechef Problem) Solution in C++ :  #include <iostream> using namespace std; int main() { int testcase,k; cin>>testcase; for(k=0;k<testcase;k++) {     int number,budget,check=0,counter=0;     cin>>number>>budget;     for(int i=0;i<number;i++)     {         int width,height,price;         cin>>width>>height>>price;         if(price<=budget  && check<(width*height))         {             check = width*height;             counter++;         }     }     if(counter==0)     {         cout<<"no tablet\n";     }     else     {         cout<<check<<"\n";     } } return 0; }