Milk
Description
Ignatius drinks milk everyday, now he is in the supermarket and he wants to choose a bottle of milk. There are many kinds of milk in the supermarket, so Ignatius wants to know which kind of milk is the cheapest.
Here are some rules:
1. Ignatius will never drink the milk which is produced 6 days ago or earlier. That means if the milk is produced 2005-1-1, Ignatius will never drink this bottle after 2005-1-6(inclusive).
2. Ignatius drinks 200 ml milk everyday.
3. If the milk left in the bottle is less than 200 ml, Ignatius will throw it away.
4. All the milk in the supermarket is just produced today.
Note that Ignatius only wants to buy one bottle of milk, so if the volume of a bottle is smaller than 200 ml, you should ignore it.
Given some information of milk, your task is to tell Ignatius which milk is the cheapest.
<pre name="code" class="cpp">#include<iostream> using namespace std; struct milk{ int vol, price; double cost; char brand[101]; }a[100], b; int main(){ int t; cin>>t; while(t--){ int n, i, p=0; cin>>n; for(i=0; i<n; i++){ cin>>b.brand>>b.price>>b.vol; if(b.vol < 200) continue; else { a[p] = b; if(a[p].vol >= 1000) a[p].cost = a[p].price*1.0/5; else { a[p].cost = a[p].price*1.0 / (a[p].vol/200); } p++; } } for(i=0; i<p; i++) for(int j=p-1; j>i; j--) if(a[j-1].cost > a[j].cost || (a[j-1].cost==a[j].cost && a[j].vol>a[j-1].vol)){ struct milk tmp; tmp = a[j]; a[j] = a[j-1]; a[j-1] = tmp; } cout<<a[0].brand<<endl; } return 0; }