日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

【PAT - 甲级1009】Product of Polynomials (25分)(模拟,细节)

發布時間:2023/12/10 编程问答 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【PAT - 甲级1009】Product of Polynomials (25分)(模拟,细节) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題干:

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?N?1???a?N?1?????N?2???a?N?2?????...?N?K???a?N?K????

where?K?is the number of nonzero terms in the polynomial,?N?i???and?a?N?i?????(i=1,2,?,K) are the exponents and coefficients, respectively. It is given that?1≤K≤10,?0≤N?K??<?<N?2??<N?1??≤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

?題目大意:

按照輸入的格式 給定兩個多項式A和B,讓你按照相同的格式輸出兩個多項式的乘積,也就是A×B。

解題報告:

就是個模擬題,但是注意細節不少。

1.首先觀察輸入可以發現當系數為0的時候這一項是需要省略的。

2.其次最后輸出的第一個數不是最高次項,而是后面需要跟著的數的個數。

3.次數需要從高往低輸出。

4.注意進行多項式乘積的時候,跟輸入的兩個K是沒有關系的,而是跟兩組N1...Nk是有關系的,又因為這里保證了N是由大到小的,也就是只和兩個N1是有關系的。

AC代碼:

#include<cstdio> #include<iostream> #include<algorithm> #include<queue> #include<stack> #include<map> #include<vector> #include<set> #include<string> #include<cmath> #include<cstring> #define FF first #define SS second #define ll long long #define pb push_back #define pm make_pair using namespace std; typedef pair<int,int> PII; const int MAX = 2e5 + 5; double A[MAX],B[MAX],C[MAX],b; int n,m,mx,a; int main() {cin>>n;for(int i = 1; i<=n; i++) {scanf("%d%lf",&a,&b);A[a] = b;if(i == 1) mx = a;}cin>>m;for(int i = 1; i<=m; i++) {scanf("%d%lf",&a,&b);B[a] = b;if(i == 1) mx += a;}for(int i = 0; i<=mx; i++) {for(int j = 0; j<=mx; j++) {C[i+j] += A[i]*B[j];}}int ans = 0;for(int i = 0; i<=mx; i++) {if(C[i] != 0) ans++;}printf("%d",ans);for(int i = mx; i>=0; i--) {if(C[i] == 0) continue;printf(" %d %.1f",i,C[i]);}return 0 ; }

?

總結

以上是生活随笔為你收集整理的【PAT - 甲级1009】Product of Polynomials (25分)(模拟,细节)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。