记录编号 119883 评测结果 AAAAA
题目名称 相对分子质量 最终得分 100
用户昵称 GravatarHouJikan 是否通过 通过
代码语言 C++ 运行时间 0.011 s
提交时间 2014-09-14 18:31:15 内存使用 0.31 MiB
显示代码纯文本
#include <iostream>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <list>
#include <vector>
#include <ctime>
#include <iterator>
#include <functional>
#define pritnf printf
#define scafn scanf
#define For(i,j,k) for(int i=(j);i<=(k);(i)++)
using namespace std;
typedef long long LL;
typedef unsigned int Uint; 
const LL INF=0x7fffffff;
//==============struct declaration==============

//==============var declaration=================
map <string,int> w;
set <string> Exist;
//==============function declaration============
int W(string cpd,bool &suc);
//==============main code=======================
int main()
{  
  string FileName="molecular";//程序名 
  string FloderName="COGS";//文件夹名 
  freopen((FileName+".in").c_str(),"r",stdin);
  freopen((FileName+".out").c_str(),"w",stdout);
#ifdef DEBUG  
  system(("cp C:\\Users\\Administrator\\Desktop\\"+FloderName+"\\standard.cpp C:\\Users\\Administrator\\Desktop\\"+FloderName+"\\submit.txt").c_str());
  clock_t Start_Time=clock();
#endif    
  string cpd;int weight;
  while (cin>>cpd&&cpd!="END_OF_FIRST_PART")
  {
    cin>>weight;
    Exist.insert(cpd);
    w[cpd]=weight;
  }
  while (cin>>cpd)
  {
    if (cpd=="0") return 0;
    bool suc=true;
    int ans=W(cpd,suc);
    if (!suc)
      cout<<"UNKNOWN"<<endl;
    else
      cout<<ans<<endl;
  }
#ifdef DEBUG  
  clock_t End_Time=clock();
  printf("\n\nTime Used: %.4lf Ms\n",double(End_Time-Start_Time)/CLOCKS_PER_SEC);
#endif    
  return 0;
}
//================fuction code====================
int W(string cpd,bool &suc)
{
   if (cpd.find("(")==string::npos)
   {
     string chem="";
     int pos=0,ans=0;
     int len=cpd.length()-1;
     while (pos<=len)
     {
       chem=cpd[pos];
       if (cpd[pos+1]>='a'&&cpd[pos+1]<='z')
         chem+=cpd[++pos];
       if (!Exist.count(chem)) 
         return suc=false;
        //分离出元素符号 
        pos++;//pos是第一个数字或者下一个元素符号开头
        int cnt=0; 
        while (cpd[pos]>='0'&&cpd[pos]<='9')
          cnt=cnt*10+cpd[pos++]-'0';
        //计算下标 
        if (cnt==0)
          ans+=w[chem];
        else
          ans+=w[chem]*cnt;
     }
     return ans;
   } 
   //以上为没有括号的处理方式 
   int Start=cpd.find("(");
   int ans=0,cmps=1,pos=Start+1,cnt=0;
   ans+=W(cpd.substr(0,Start),suc);//第一组配对的括号前面的重量
   while (cmps!=0)
   {
      if (cpd[pos]=='(') 
        cmps++;
      if (cpd[pos]==')')
        cmps--;
      pos++;
   }
   //现在pos处于第一对匹配的括号后 
   int cntw=W(cpd.substr(Start+1,pos-Start-2),suc);//计算出括号里的质量 
   while (cpd[pos]>='0'&&cpd[pos]<='9')
     cnt=cnt*10+cpd[pos++]-'0';
   if (cnt!=0)
     ans+=cntw*cnt;
   else
     ans+=cntw;
   //现在pos处于数字后第一个元素 
   ans+=W(cpd.substr(pos,cpd.length()+1-pos),suc); 
   return ans;
}