博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1002. A+B for Polynomials (25)
阅读量:3661 次
发布时间:2019-05-21

本文共 1197 字,大约阅读时间需要 3 分钟。

1002. A+B for Polynomials (25)

时间限制
400 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

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

Input

Each input file contains one test case. Each case occupies 2 lines, and each line contains the information of a polynomial:K N1 aN1 N2 aN2 ... NK aNK, where K is the number of nonzero terms in the polynomial, Ni and aNi (i=1, 2, ..., K) are the exponents and coefficients, respectively. It is given that 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.

Sample Input
2 1 2.4 0 3.22 2 1.5 1 0.5
Sample Output
3 2 1.5 1 2.9 0 3.2写对这道题目真不容易,花了好几天换了好几个思路,附上代码和注意事项 #include
#include
using namespace std;#define MAX 1001int main(){ double a[MAX]; for(int i=0;i
>k1; for(int i=0;i
>m>>n; a[m]+=n;//把每一项的值放入对应的第几项中去 } cin>>k2; for(int i=0;i
>m>>n; a[m]+=n; } int num=0; for(int i=0;i
0;i--)//从大到小输出 { if(a[i]!=0) { cout<<" "<
<<" "<
<
<

转载地址:http://pehfn.baihongyu.com/

你可能感兴趣的文章
笔记(二十六)
查看>>
Android-Dialogd对话框
查看>>
android系统功能-----调用短信发送功能
查看>>
android-读取和保存文件实例
查看>>
android---菜单栏选项
查看>>
android-本地音播放
查看>>
给定图片路径获取图片的前4kb
查看>>
Android导入别人的项目我自己的这么更改的
查看>>
android学习笔记 Text view和EditText AutoCompleteTextView MultiAutoCompleteTextView
查看>>
Android 学习之multiAutoCompleteTextView常用属性
查看>>
python自学 基础 入门 起步
查看>>
点击事件 Button Imagebutton onclick监听事件的种类
查看>>
Imageview 图片的自动适配 Togglebutton 点击事件
查看>>
CheckBox setCheckchangelistener()方法 监听事件
查看>>
android Checkbox RadioGroup RadioButton log
查看>>
Android 布局 线性布局 相对布局父类的位置 布局相关属性
查看>>
Intent通信信使 AndroidManifest.xml
查看>>
OOP OOp Java面试题
查看>>
Android Listview 以及list view适配器
查看>>
离职模板!
查看>>