博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ZJU PAT 1002 A+B for Polynomials
阅读量:4968 次
发布时间:2019-06-12

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

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
1 dict1 = {} 2 for i in range(2): 3     list1 = raw_input().split() 4     for j in range(int(list1[0])): 5         a = int(list1[j*2+1]) 6         b = float(list1[j*2+2]) 7         if a in dict1.keys(): 8             dict1[a] += b 9             if abs(dict1[a]) < 0.00001:10                 del(dict1[a])11         else:12             dict1[a] = b13 print len(dict1),14 items = dict1.keys()15 items.sort()16 for item in reversed(items):17     print "%d %.1f" % (item, dict1[item]),

 写出来的python怎么看都像c,没python的感觉。老了老了接受不了新事物了

转载于:https://www.cnblogs.com/szhang/archive/2013/01/17/2864143.html

你可能感兴趣的文章
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
两个表格中数据不用是一一对应关系--来筛选不同数据,或者相同数据
查看>>
客户数据库出现大量cache buffer chains latch
查看>>
機械の総合病院 [MISSION LEVEL: C]
查看>>
实战练习细节(分行/拼接字符串/字符串转int/weak和copy)
查看>>
Strict Standards: Only variables should be passed by reference
查看>>
hiho_offer收割18_题解报告_差第四题
查看>>
AngularJs表单验证
查看>>
静态方法是否属于线程安全
查看>>
02号团队-团队任务3:每日立会(2018-12-05)
查看>>
SQLite移植手记1
查看>>
js05-DOM对象二
查看>>