PAT-A 1009. Product of Polynomials (25)

传送门

https://www.patest.cn/contests/pat-a-practise/1009

题目

This time, you are supposed to find A*B where A and B are two polynomials.
Input Specification:
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 Specification:
For each test case you should output the product 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 up to 1 decimal place.
Sample Input
2 1 2.4 0 3.2
2 2 1.5 1 0.5
Sample Output
3 3 3.6 2 6.0 1 1.6

分析

1.因为只有两个变量,所以没用结构体数组,用的pair代替,以first为指数,second为系数。
2.遍历两个多项式,每次获得临时的指数和系数,根据指数,将系数加到对应下标的数组里,每次记录一下最大指数,便于后面统计多项式的项数。
3.最后格式化输出结果即可。

源代码

//C/C++实现
#include <iostream>
#include <vector>

using namespace std;

double res[2001]; //result polynomial

int main(){
    int n;
    scanf("%d", &n);
    vector<pair<int, double>> v1(n); //the first polynomial
    for(int i = 0; i < n; ++i){
        scanf("%d %lf", &v1[i].first, &v1[i].second);
    }
    //input the second polynomial
    scanf("%d", &n);
    vector<pair<int, double>> v2(n); //the second polynomial
    for(int i = 0; i < n; ++i){
        scanf("%d %lf", &v2[i].first, &v2[i].second);
    }
    //compute
    int tmp_exp;
    double tmp_coef;
    int max_exp = 0;
    for(int i = 0; i < v1.size(); ++i){
        for(int j = 0; j < v2.size(); ++j){
            tmp_exp = v1[i].first + v2[j].first;
            tmp_coef = v1[i].second * v2[j].second;
            max_exp = (tmp_exp > max_exp) ? tmp_exp : max_exp;
            res[tmp_exp] += tmp_coef;
        }
    }
    //output
    int count = 0;
    for(int i = max_exp; i >= 0; --i){
        if(res[i] != (double)0){
            ++count;
        }
    }
    printf("%d", count);
    for(int i = max_exp; i >= 0; --i){
        if(res[i] != (double)0){
            printf(" %d %.1f", i, res[i]);
        }
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • 星相师,你好。外星朝我飞来的嘲笑我的虫子,你好 你是谁。仿佛扑克牌遇见魔方我的失去无可抵挡。我失去胳膊、牙齿。我失...
    王力黑阅读 1,634评论 1 0
  • 近段时间我读了一篇《要么孤独,要么庸俗》,深深地感到作者简直写到了我的心坎里,查了作者,是德国的哲学家叔本华。 于...
    踏雁寻花阅读 4,241评论 0 3
  • (五古) 春来悲瘦影,吊眼看斜晖, 群翥飞高宇,独妍隐灌摧。 旧木新枝几?花落风停时。 欲观云霁变,寄情山水间, ...
    长安旧人阅读 1,850评论 0 6
  • 闲聊几句 本该是在端午之前完成这篇书评的,一放假,又耽搁了。在开这个公众号之前,就想着靠什么内容支撑起来?书评、影...
    文思不得C姐阅读 3,161评论 0 0

友情链接更多精彩内容