码迷,mamicode.com
首页 > 其他好文 > 详细

UVA 1586 - Molar mass

时间:2014-10-22 18:13:12      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   for   2014   on   log   amp   

#include <cstdio>
#include <cstring>
int key[5];
double value[5]={0,12.01,1.008,14.01,16.00};
int T;
int num=0,p=0,flag=0;
int check(char ch)
{
    switch(ch)
    {
    case 'C':
        return 1;
    case 'H':
        return 2;
    case 'N':
        return 3;
    case 'O':
        return 4;
    }
}
int main()
{
    int len,i;
    scanf("%d",&T);
    char str[100];
    while(T--)
    {
        scanf("%s",str);
        memset(key,0,sizeof(key));
        num=0,p=0,flag=0;
        len = strlen(str);
        for(i=0; i<len;++i)
        {
            if(str[i]>='C' && str[i]<='O')
            {
                if(flag)
                {
                    if(key[p] >0)
                        key[p] += num;
                    else
                        key[p] = num;
                    flag=0; num=0;
                }
                p = check(str[i]);
                if(i==len-1 || (str[i+1]>='C' && str[i+1]<='O'))
                   ++key[p];
            }
            else
            {
                flag=1;
                num = num*10+(str[i]-'0');
                if(i == len-1)
                {
                    if(key[p] >0)
                        key[p] += num;
                    else
                        key[p] = num;
                }
            }
        }

        double result=0;
        for(i=1;i<=4;++i)
        {
            result += key[i]*value[i];
        }
        printf("%.3lf\n",result);
    }
    return 0;
}


题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=830&page=show_problem&problem=4461


UVA 1586 - Molar mass

标签:blog   http   io   ar   for   2014   on   log   amp   

原文地址:http://blog.csdn.net/kuangzhenxi/article/details/40379949

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!