码迷,mamicode.com
首页 > 其他好文 > 详细

1002 A+B for Polynomials (25分)

时间:2020-02-08 11:33:33      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:mat   names   rate   lease   pre   als   col   space   clu   

#include <math.h>
#include <stdio.h>
#include <iostream>
using namespace std;

int main()
{
    int k1,k2,n,max_n=0,c=0;
    double an;
    double poly[1001]={0};
    cin>>k1;
    for(int i=0;i<k1;i++)
    {
        cin>>n>>an;
        poly[n]=an;
        if(n>max_n)
            max_n=n;
    }
    cin>>k2;
    for(int i=0;i<k2;i++)
    {
        cin>>n>>an;
        poly[n]+=an;
        if(n>max_n)
            max_n=n;
    }
    for(int i=max_n;i>=0;i--)
        if(poly[i]!=0)
            c++;
    cout<<c;
    for(int i=max_n;i>=0;i--)
        if(poly[i]!=0)
            printf(" %d %.1f",i,poly[i]);//注意保留一位小数,否则有几个测试数据过不去(Please be accurate to 1 decimal place.)
    return 0;
}

 

1002 A+B for Polynomials (25分)

标签:mat   names   rate   lease   pre   als   col   space   clu   

原文地址:https://www.cnblogs.com/QRain/p/12275642.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!