https://pintia.cn/problem-sets/994805342720868352/problems/994805509540921344
This time, you are supposed to find A×B where A and B are two polynomials.
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.
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.
polynomials 多项式
#include<bits/stdc++.h> #pragma GCC optimize(3) #define max(a,b) a>b?a:b using namespace std; typedef long long ll; struct node{ double a; int b; }A[15],B[15]; double ans[2005]; vector<int> v; int main(){ int n,m; scanf("%d",&n); for(int i=1;i<=n;i++) scanf("%d%lf",&A[i].b,&A[i].a); scanf("%d",&m); for(int i=1;i<=m;i++) scanf("%d%lf",&B[i].b,&B[i].a); for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++){ ans[A[i].b+B[j].b]+=A[i].a*B[j].a; } } for(int i=2000;i>=0;i--){ if(ans[i]!=0) v.push_back(i); } cout<<v.size(); for(int i=0;i<v.size();i++){ printf(" %d %.1f",v[i],ans[v[i]]); } return 0; }
