/// Raihan Ruhin /// CSE, Jahangirnagar University. /// Dhaka-Bangladesh. /// id: raihanruhin (topcoder / codeforces / codechef / uva / uvalive / spoj), 3235 (lightoj) /// mail: raihanruhin@ (yahoo / gmail / facebook) /// blog: ruhinraihan.blogspot.com #include<bits/stdc++.h> using namespace std; #define SET(a) memset(a,-1,sizeof(a)) #define CLR(a) memset(a,0,sizeof(a)) #define PI acos(-1.0) #define MOD 1000000007 #define MX 100010 int main() { ios_base::sync_with_stdio(0);cin.tie(0); int tc, kk=1, n, mn, mx, l, w, h; string s, mnname, mxname; char ch; while(cin>>n && n) { mn=1e9, mx=0; for(int i=0;i<n;i++) { cin>>s>>l>>w>>h; int vol = l*w*h; if(vol<mn) { mn=vol; mnname=s; } if(vol>mx) { mx=vol; mxname=s; } } if(mn==mx) cout<<"No child has lost jelly.\n"; else cout<<mnname<<" has lost jelly to "<<mxname<<".\n"; } return 0; }
Sunday, 20 September 2015
Jelly (UVALive - 3003, Regionals 2004 >> South Pacific)
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment