Thursday, July 30, 2015

1227 - Boiled Eggs

#include<bits/stdc++.h>
using namespace std;
 
int main()
{
    int T,n,p,q,c=1,i,w,t,arry[50];
    scanf("%d",&T);
    while(T--)
    {
        w=0;
        t=0;
        scanf("%d%d%d",&n,&p,&q);
        for(i=0; i<n; i++)
            scanf("%d",&arry[i]);
        for(i=0; i<n; i++)
        {
            if(w+arry[i]<=q && t+1<=p)
            {
                w += arry[i];
                t++;
            }
        }
        printf("Case %d: %d\n",c++,t);
    }
    return 0;
}

No comments:

Post a Comment

Triathlon

Triathlon - CodeChef # include < bits/stdc++.h > using namespace std ; # define fi first # define se second # define mp ...