【PAT甲级 C++】1002. A+B for Polynomials

This time, you are supposed to find A+B where A and B are two polynomials.

这一次,您应该找到A + B,其中A和B是两个多项式。
(也就是说,把次数一样的系数加起来)

Input

每个输入文件包含一个测试用例。每个用例占用2行,每行包含多项式的信息:K N1 aN1 N2 aN2 …NK aNK,
其中 K 是多项式中非零项的数量,Ni 和 aNi (i=1, 2, …, K) 分别是指数和系数。假设 1 <= K <= 10,0 <= NK < … < N2 < N1 <=1000。

Output
For each test case you should output the sum of A and B in one line, with the same format as the input. Notice that there must be NO extra space at the end of each line. Please be accurate to 1 decimal place.

对于每个测试用例,应在一行中输出 A 和 B 的总和,格式与输入相同。请注意,每行末尾不得有多余的空格。请精确到小数点后1位。

Sample Input
2(非0项数量) 1(指数) 2.4(系数) 0(指数) 3.2(系数)
2(非0项数量 )2 (指数)1.5(系数) 1(指数) 0.5(系数)

Sample Output
3(非0项数量) 2(指数) 1.5(系数和) 1(指数) 2.9(系数和) 0(指数) 3.2(系数和)

思路:
在这里插入图片描述

  • 方法一:数组
  • 方法二:使用map

代码及解释:

方法一:数组

#include<iostream> 
#include<cstdio>
using namespace std;

int main(){
   
	//题设中系数是0--1000,包含0和1000 
	double xishu[1001]={
   
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值