UVA1586 分子量 Molar mass
程序员文章站
2024-03-19 19:13:26
...
题目描述
输入格式
无
输出格式
无
题意翻译
现给你若干个分子式需要你求分子量。
例如:C6H5OH的分子量为12.016+1.0085+16.00+1.008=94.108g/mol。
(ps:数字为数字前面元素的下标,所有分子式均无括号例如:2OH=2*16.00+1.008)
输入输出格式
输入:
输入n(2<=n<=99)
接下来n行为分子式
输出:
输出每个分子的分子式
输入输出样例
无
代码如下:
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<iostream>
#include<cstdio>
#include <algorithm>
#include<map>
using namespace std;
#pragma warning(disable:4996)
#pragma warning(disable:6031)
map<char,double>value;
int main()
{
//通过map建立一对一映射
value['C'] = 12.01, value['H']=1.008,value['O']=16.00,value['N']=14.01;
int n;
cin >> n;//次数
while (n--)
{
string s;
cin >> s;
double ans = 0;
int slen=s.length();//长度
int j=0;
for (int i=0;i<slen;i++)//循环判断
{
if (isalpha(s[i]))
{
ans += value[s[i]];//加上对应值
j = i;
}
else
{
int temp=0;
if (isdigit(s[i]))//遇到的第一个数字
{
temp = s[i] - '0';
if (isdigit(s[i+1]))//其后跟随一个数字
{
temp = temp * 10 + s[i + 1] - '0';
i++;
}
/*int y = 1;
while ((i+y)<slen&&isdigit(s[i+y]))
{
temp = temp * 10 + s[i + 1] - '0';
i++;
y++;
}*/
}
ans += value[s[j]] * (temp - 1);
}
}
printf("%.3lf\n",ans);
ans = 0;
}
return 0;
}
上一篇: 509. 斐波那契数
推荐阅读
-
分子量(Molar Mass, ACM/ICPC Seoul 2007, UVa1586)小弟不才,欢迎来改错
-
UVA1586 分子量 Molar mass
-
UVA 1586 Molar Mass (c++)(字符串处理)(模拟)
-
分子量 (Molar Mass,ACM/ICPC Seoul 2005,UVa1586)
-
Molar Mass, ACM/ICPC Seoul 2007,UVa1586
-
[Molar Mass, ACM/ICPC Seoul 2007, UVA1586]
-
Molar Mass, ACM/ICPC Seoul 2007, UVa 1586
-
UVA 1586 Molar Mass (c++)(字符串处理)(模拟)
-
分子量 (Molar Mass,ACM/ICPC Seoul 2005,UVa1586)
-
【算法竞赛 入门经典】习题3-2 分子量(Uva1586)