#include <iostream>
#include <stdio.h>
typedef struct Poly {
int exp; //指数
double cof; //系数
}Poly;
int main(int argc, char *argv[]) {
Poly poly[1001];
double ans[2001];
int n;
scanf("%d", &n); //第一个多项式项数
for(int i=0; i<n; i++) {
scanf("%d %lf", &poly[i].exp, &poly[i].cof);
}
int m;
scanf("%d", &m);
for(int i=0; i<m; i++) {
int exp;
double cof;
scanf("%d %lf", &exp, &cof);
for(int j=0; j<n; j++) {
ans[exp + poly[j].exp] += (cof * poly[j].cof);
}
}
int count = 0;
for(int i=0; i<=2000; i++) {
if(ans[i] != 0.0) count++;
}
printf("%d", count);
for(int i=2000; i>=0; i--) {
if(ans[i] != 0.0) {
printf(" %d %.1lf", i, ans[i]);
}
}
}
1009 Product of Polynomials (25 分)
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 题目 1009 Product of Polynomials (25 分)This time, you are s...
- This time, you are supposed to find A*B where A and B are...
- 我的PAT系列文章更新重心已移至Github,欢迎来看PAT题解的小伙伴请到Github Pages浏览最新内容。...