#include <iostream>
#include <map>
#include <iomanip>
using namespace std;
int main()
{
int n,m,p,prodCount;
string prod;
double price,totalPrice;
map<string,double> products;
cin>>n;
while(n-->0)
{
totalPrice = 0;
cin>>m;
for(int i = 0; i<m; i++)
{
cin>>prod>>price;
products[prod] = price;
}
cin>>p;
for(int i = 0; i<p; i++)
{
cin>>prod>>prodCount;
totalPrice += products[prod]*prodCount;
}
cout<<fixed<<setprecision(2)<<"R$ "<<totalPrice<<endl;
products.clear();
}
}
সোমবার, ৮ ফেব্রুয়ারী, ২০১৬
URI Online Judge | 1281 Going to the Market Solution
লেবেলসমূহ:
URI Online Judge Solution
এতে সদস্যতা:
মন্তব্যগুলি পোস্ট করুন (Atom)
কোন মন্তব্য নেই:
একটি মন্তব্য পোস্ট করুন