1009 Product of Polynomials (25 分)难度: 简单 / 知识点: 模拟

Posted 辉小歌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1009 Product of Polynomials (25 分)难度: 简单 / 知识点: 模拟相关的知识,希望对你有一定的参考价值。


https://pintia.cn/problem-sets/994805342720868352/problems/994805509540921344

注意:系数数据范围虽然是0-1000 但是乘积可能会大于1000

#include<bits/stdc++.h>
using namespace std;
const int N=1e4+10;
double a[N],b[N],c[N],n,m,cnt;
int main(void)
{
	cin>>n;
	for(int i=1;i<=n;i++) 
	{
		int index;
		double score; 
		cin>>index>>score;
		a[index]+=score;
	}
	cin>>m;
	for(int i=1;i<=m;i++) 
	{
		int index;
		double score; 
		cin>>index>>score;
		b[index]+=score;
	}
	for(int i=0;i<=1000;i++)
	{
		for(int j=0;j<=1000;j++)
		{
			if(a[i]&&b[j])
			{
				c[i+j]+=a[i]*b[j];
			}
		}
	}
	for(int i=0;i<=3000;i++) if(c[i]!=0) cnt++;
	cout<<cnt;
	for(int i=3000;i>=0;i--) if(c[i]!=0) printf(" %d %.1lf",i,c[i]);
	return 0;
}

以上是关于1009 Product of Polynomials (25 分)难度: 简单 / 知识点: 模拟的主要内容,如果未能解决你的问题,请参考以下文章

PAT1009:Product of Polynomials

1009 Product of Polynomials (25)(25 分)

1009 Product of Polynomials

1009 Product of Polynomials

1009 Product of Polynomials (25分) 多项式乘法

1009 Product of Polynomials (25 分)