M - Make Cents?

M - Make Cents?




Every year, an elephant qualifies to the Arab Collegiate Programming Competition. He graduated this year, but that’s irrelephant. What’s important is that the location of the competition might not have been the same every year. Therefore, after every trip, he always has leftover money in the currency of the country he visited.

Now he wants to see how much Jordanian Dinars he has after all those competitions. Can you help him convert the leftover money from all competitions to Jordanian Dinar, if that makes any cents?

Input

The first line of input is T – the number of test cases.

The first line of each test case contains C and N (1 ≤ C, N ≤ 100000), the number of currency types and the number of competitions, respectively.

The next C lines each contain the name of the currency Ci of maximum length 10 in lowercase and/or uppercase letters, and the value Vi of that currency in Jordanian Dinar (0 < Vi ≤ 1000). The names are case-sensitive.

The next N lines each contains an amount left over from each competition (0 ≤ Ni ≤ 1000), and the name of the currency of that amount (it is guaranteed that the name was either given in the input or is “JD”).

Output

For each test case, print on a single line the total amount of money he has in Jordanian Dinar(JD) rounded to 6 decimal digits.

Example
Input
1
3 5
dollar 0.71
euro 0.76
turkish 0.17
5.1 dollar
6 dollar
7 turkish
3 euro
1.1 JD
Output
12.451000


题意:给出c种货币的名称和对应的价值,货币JD价值为1。有n次交易,问经过n次交易后获得价值与货币JD等值的货币价值。


//用c++里面的map,不能用cin会TLE!!!

#include <iostream>
#include <bits/stdc++.h>

using namespace std;


int main()
{
    int t,c,n;
    char s[15];
    double sm,nub;
    scanf("%d",&t);
    while(t--)
    {
        map<string,double>mp;
        sm=0;
        mp["JD"]=1.0;
        scanf("%d%d",&c,&n);
        for(int i=0;i<c;i++)
        {
            string k;
            scanf("%s%lf",s,&nub);
            for(int i=0;i<strlen(s);i++)
            k+=s[i];
            mp[k]=nub;
        }
        for(int i=0;i<n;i++)
        {
             string k;
            scanf("%lf%s",&nub,s);
            for(int i=0;i<strlen(s);i++)
            k+=s[i];
            sm+=(mp.find(k)->second)*nub;
        }
        printf("%.6lf\n",sm);
    }
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值