算法竞赛入门经典第二版 第三章【uvaoj在线习题】Exercises

本文整理了《算法竞赛入门经典》第二版第三章的在线习题,包括1585 - Score、1586 - Molar mass等12道题目,覆盖了数字处理、字符串操作等算法知识点。
摘要由CSDN通过智能技术生成

转载出处:code4101


Exercises:

习题3-1:  1585 - Score

#include <stdio.h>
#include <string.h>
#define maxn 100

int main()
{
	char s[maxn];
	int T,score,tot;
	scanf("%d",&T);
	while(T--)
	{
		memset(s,0,sizeof(s));
		scanf("%s",s);
		score = 0;tot = 0;//必须在循环内,不然值循环叠加
		int len = strlen(s);
		for(int i = 0;i < len;i++)
		{
			if (s[i] == 79)
			{
				tot++;
				score += tot;
			} 
			else
				tot = 0;//重置为0
		}
		printf("%d\n",score);
	}

	return 0;
}

习题3-2: 1586 - Molar mass

#include <stdio.h>
#include <string.h>
#include <ctype.h>
#define maxn 100

int main()
{
	char s[maxn];
	int T,w;
	double sum;
	scanf("%d",&T);
	while(T--)
	{
		memset(s,0,sizeof(s));
		scanf("%s",s);
		sum = 0;
		int len = strlen(s);

		for(int i = 0;i < len;i++)
		{
           // 算出后两位所代表的数值
            if (isdigit(s[i+1])) 
			{
                if (isdigit(s[i+2])) w = 10*(s[i+1]-'0')+s[i+2]-'0';
                else 
					w = s[i+1] - '0';
            }
            else 
				w = 1;

	    // 判断第一位
            if (!isalpha(s[i])) continue;
            else if (s[i] == 'C') sum += 12.01*w;
            else if (s[i] == 'H') sum += 1.008*w;
            else if (s[i] == 'O') sum += 16.00*w;
            else sum += 14.01*w;
		}

		printf("%.3lf\n",sum);
	}

	return 0;
}

习题3-3:1225 - Digit Counting

#include <stdio.h>

int main()
{
	int T,N, t;
	int i = 0;
	scanf("%d",&T);
	while(T--)
	{
		int count[10] = {0};
		scanf("%d",&N);
        for (i = 1; i <= N; i++) 
		{
            t = i;
            while (t) count[t%10]++, t/=10;
        }
		for (i = 0; i < 9; i++) 
			printf("%d ", count[i]);
		printf("%d\n",count[9]);
	}

	return 0;
}

习题3-4:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值