#Lutece1004. 多项式的乘法

多项式的乘法

Migrated from Lutece 1004 多项式的乘法

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

任给两个多项式,求它们的乘积。本题要求用链表实现。

Input

有多组测试数据。输入的第一行是整数TT0<T2000<T\le 200),表示测试数据的组数。每一组测试数据有两行,分别表示第一个和第二个多项式,每一行有多个整数,其写法为(出现两个数为1-1表示该多项式输入结束):

系数11 次数11 系数22 次数22 …… 系数kk 次数k1k -1 1-1

例如: 2 3 4 2 -8 1 9 0 -1 -1 表示多项式: 2×x3+4×x28×x+92\times x^3+4\times x^2-8\times x+9

其中,系数的范围为[1000,1000][-1000,1000],次数的范围为[0100][0,100]

Output

对应每组输入,输出多项式的积,要求按降幂输出,占一行。

Samples

3
3 1 2 2 4 0 -1 -1
3 2 3 1 2 0 -1 -1
4 4 4 2 3 3 2 1 -2 0 -1 -1
-7 5 -6 2 2 0 -2 1 -1 -1
3 3 6 0 -1 -1
-7 0 -1 -1
6*x^4+15*x^3+25*x^2+18*x+8
-28*x^9-21*x^8-28*x^7-38*x^6-12*x^5-22*x^4-14*x^3+16*x^2+8*x-4
-21*x^3-42

Resources

wxiaoping C语言练习