首页 > 其他分享 >1002. A+B for Polynomials (25)

1002. A+B for Polynomials (25)

时间:2022-11-25 14:33:58浏览次数:62  
标签:25 正确 index Polynomials 13082 答案 1002 cout


1002. A+B for Polynomials (25)


时间限制



400 ms



内存限制



65536 kB



代码长度限制



16000 B



判题程序



Standard



作者



CHEN, Yue


This time, you are supposed to find A+B where A and B are two polynomials.

Input

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

For each test case you should output the sum 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 to 1 decimal place.


Sample Input


2 1 2.4 0 3.2
2 2 1.5 1 0.5


Sample Output

3 2 1.5 1 2.9 0 3.2


比较的时候要有fabs()    double的绝对值  #include<math.h>



评测结果

时间

结果

得分

题目

语言

用时(ms)

内存(kB)

用户

7月17日

20:51

答案正确

​25​

​1002​

​C++ (g++ 4.7.2)​

1

308

​datrilla​

测试点

测试点

结果

用时(ms)

内存(kB)

得分/满分

0

答案正确

1

308

13/13

1

答案正确

1

308

2/2

2

答案正确

1

180

2/2

3

答案正确

1

308

2/2

4

答案正确

1

308

2/2

5

答案正确

1

308

2/2

6

答案正确

1

308

2/2

#include<iostream>
#include<iomanip>
#include<math.h>
using namespace std;
#define esp 0.04
int main()
{
double index[1001]={0};
int n,a,count;
double e;
cin>>n;
while(n--)
{
cin>>a>>e;
index[a]=e;
}
cin>>n;
while(n--)
{
cin>>a>>e;
index[a]+=e;
}
n=1001;
count=0;
while(n--)
{
if(fabs(index[n])>esp)count++;
}
cout<<count;
n=1001;
while(n--)
{
if(fabs(index[n])>esp){
cout<<" "<<n<<" ";
cout<<setiosflags(ios::fixed)<<setprecision(1)<<index[n];}
}
cout<<endl;
return 0;
}


标签:25,正确,index,Polynomials,13082,答案,1002,cout
From: https://blog.51cto.com/datrilla/5886673

相关文章

  • 1059. Prime Factors (25)
    1059.PrimeFactors(25)时间限制50ms内存限制65536kB代码长度限制16000B判题程序Stand......
  • 2022-11-25Acwing每日一题
    本系列所有题目均为Acwing课的内容,发表博客既是为了学习总结,加深自己的印象,同时也是为了以后回过头来看时,不会感叹虚度光阴罢了,因此如果出现错误,欢迎大家能够指出错误,我......
  • 11.25.2
    #include<stdio.h>intmain(){ inta,n,i; unsignedlonglongsum=0; scanf("%d",&n); a=2; for(i=1;i<=n;i++) { sum+=a; a=a*10+a%10; } printf("%llu",sum)......
  • CF1251E2
    非常神的贪心,先要发现以下两个性质:要花钱收买的一些人,那么肯定是在一开始就收买他们。按照\(m\)升序排序,那么处理\(m=x\)时,\(m=1\simx-1\)的人一定都投了票,不管是......
  • java工具类-jwt-RSA256算法加密
    加密数据(用户信息)packagetestJWT;/***@authorZRY*@version1.0*/publicclassUser{//用户idprivateintid;//用户名称private......
  • Unknown initial character set index '255' received from server. Initial client
    错误:Causedby:java.sql.SQLException:Unknowninitialcharactersetindex'255'receivedfromserver.Initialclientcharactersetcanbeforcedviathe'cha......
  • luogu1253 [yLOI2018] 扶苏的问题 题解
    扶苏的问题题目题目描述给定一个长度为\(n\)的序列\(a\),要求支持如下三个操作:给定区间\([l,r]\),将区间内每个数都修改为\(x\)。给定区间\([l,r]\),将区间内每......
  • ABC255Ex
    ABC255Ex*2430思路较为简单。调了一下午加一早上,发现是人眼做\(10^{18}\)级整数比大小判错了,抬走。题意给定一片\(N\)格的农田,从第\(0\)天开始,第\(i\)格农田......
  • 淘宝、天猫、1688、京东等25个平台的API数据接口
    接口大全;item_get获得淘宝商品详情item_get_app获得淘宝app商品详情原数据item_get_pro获得淘宝商品详情高级版item_review获得淘宝商品评论item_sku获取sku详细信......
  • 【221123-7】计算(2-根号3)的1002次方乘以(7+4倍根号3)的501次方
    ......