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

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

【测试点0分析】1009 Product of Polynomials (25 分)

發(fā)布時(shí)間:2024/2/28 编程问答 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【测试点0分析】1009 Product of Polynomials (25 分) 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

立志用最少的代碼做最高效的表達(dá)


PAT甲級(jí)最優(yōu)題解——>傳送門


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


測(cè)試點(diǎn)0:多項(xiàng)式相乘,可能出現(xiàn)系數(shù)為0的情況,因此,最后輸出的項(xiàng)數(shù)可能計(jì)算錯(cuò)誤。

解法:數(shù)組硬解, 其實(shí)換成結(jié)構(gòu)體存儲(chǔ)效率會(huì)高一點(diǎn),但考慮到最大數(shù)據(jù)量只有1k,因此也無所謂了。


#include<bits/stdc++.h> using namespace std; typedef long long gg;gg a[1010] = {0}, b[1010] = {0}, c[2020] = {0}; int main() {gg k,x; cin >> k; while(k--) {cin >> x; double d; cin >> d;a[x] = (gg)(d*100);}cin >> k; while(k--) {cin >> x; double d; cin >> d;b[x] = (gg)(d*100);}gg num = 0;for(gg i = 0; i <= 1000; i++) for(gg j = 0; j <= 1000; j++) {if(a[i] == 0) continue;if(b[j] != 0) c[i+j] += a[i]*b[j]; }for(int i = 0; i <= 2000; i++) if(c[i] != 0) num++;printf("%d", num);for(int i = 2000; i >= 0; i--) if(c[i] != 0) printf(" %d %.1lf", i, c[i]/10000.0);return 0; }

總結(jié)

以上是生活随笔為你收集整理的【测试点0分析】1009 Product of Polynomials (25 分)的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。