05 March 2018

UVA 10295 - Hay Points

/***
Md. Nazmul Hasan
Shahjalal University of Science & Technology,Sylhet.
hasan08sust@gmail.com
***/
#include<iostream>
#include<cstdio>
#include<stack>
#include<queue>
#include<map>
#include<vector>
#include<algorithm>
#include<cstring>
#include<sstream>
#include<cmath>
#include <iomanip>
using namespace std ;
typedef long long ll ;
typedef int in ;
typedef unsigned long long ull ;
const double pi = 2*acos(0) ;
#define maxi 40000
#define pf printf
#define sc scanf
#define pb push_back
#define MEM(x,y) (memset((x),(y),sizeof(x)))
#define MIN(x,y) ((x) < (y) ? (x) : (y))
#define MAX(x,y) ((x) > (y) ? (x) : (y))
#define load(array,size)  for(int i=0 ; i<size ; i++) cin>>array[i]  ;
#define new_line  pf("\n")
#define clear_data(array) memset(array,0,sizeof(array))
#define highest_int 2147483647


int main()
{
    int m,n,k,sum;
    map<string,int>my_map;
    string str,word;


    sc("%d %d",&m,&n);
    while(m--)
    {
       cin>>str>>k;
       my_map[str]=k;
    }

    while(n--)
    {
        word = "";
        sum=0;
        while(true)
        {
            cin>>str;
            if(str[0]=='.' && str.size()==1)
            {
                pf("%d\n",sum);
                word = "";
                break;
            }
            for(int i=0 ; i<str.size() ; i++)
            {
                if(str[i]==' ')
                {
                    word = "";
                    continue;
                }
                word += str[i];
                if(str[i+1]==' ' || i==str.size()-1)
                {
                    if(my_map[word])
                    {
                        //cout<<word<<" ";
                        sum += my_map[word];
                    }
                    if(i==str.size()-1)
                        word = "";

                }
            }
        }
    }
    return 0;
}

No comments:

Post a Comment

UVA 10679 - I Love Strings!!