算法学习【4】 - 1381. a*b

本文介绍了一种处理大整数乘法的方法,通过将大整数分解为字符串,并使用叠加的方式实现大整数与较小整数之间的乘法运算。此方法适用于a范围在0<=a<=10^100,b范围在0<=b<=10,000的情况。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题目:http://soj.me/1381

1381. a*b

Description

Give two positive integers a and b, please help us calculate a*b.

Input

The first line of the input is a positive integer T. T is the number of test cases followed.

Each test case contain two integer a,b (0<=a<=10^100, 0<=b<=10,000) given in one line.

Output

The output of each test case should consist of one line, contain the result of a*b.

Sample Input

12 7

Sample Output

14

Problem Source

Algorithm Course Examination 2006



思路:大整数乘法,稍微修改了下,把b当成int叠加吧,感觉这种方法比较简单。

代码:

#include <iostream>
#include <string>

using namespace std;

string BigAdd(string a, string b)
{
	while (a.size() < b.size())
	{
		a = '0' + a;
	}
	while (a.size() > b.size())
	{
		b = '0' + b;
	}
	a = '0' + a;
	b = '0' + b;

	for (int i = a.size() - 1; i > 0; i--)
	{
		a[i] = a[i] + b[i] - '0';
		if (a[i] > '9')
		{
			a[i] = a[i] - 10;
			a[i - 1] = a[i - 1] + 1;
		}
	}

	int zeroNum = 0;
	for (int j = 0; j < a.size(); j++)
	{
		if (a[j] == '0')
		{
			zeroNum++;
		} 
		else
		{
			break;
		}
	}
	if (zeroNum == a.size())
	{
		a = '0';
	} 
	else
	{
		a = a.substr(zeroNum, a.size() - zeroNum);
	}

	return a;
}

string specialMul(string a, int b)
{
	string sum = "0";
	for (int i = 0; i < b; i++)
	{
		sum = BigAdd(sum, a);
	}
	return sum;
}

int main()
{
	int size;
	string a;
	int b;

	cin >> size;

	while (size--)
	{
		cin >> a >> b;
		cout << specialMul(a, b) << endl;
	}

	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值