PAT 1002 A+B for Polynomials

其实这个代码还是有问题的,怎么测试点就全通过了呢,就是最终输出的count值有问题。。。。

题目地址

这个题目花费了一些时间调试,因为思考的不全面,被题目描述所引导了,一直以为多项式的系数只会给正数,最后看到别人提的问题才意识到这一点。因为最后的输出条件开始是用和是否为0作为判断条件的。

还有就是精度问题,中间fabs那段代码参考了别人的代码,不然一直有两个测试点过不去。

#include
#include
#include
#include
#include
#include

using namespace std;

int main(int argc,char *argv[]){
    int a,b,mark[1001];
    double sum[1001];
    int index1,index2,max = 0;

    memset(mark,0,sizeof(int));//将两个数组置0
    memset(sum,0,sizeof(double));

    double temp;
    int count = 0;

    scanf("%d" , &a);
    for(int i = 0; i < a;i++){
        scanf(" %d %lf",&index1,&temp);
        sum[index1] = temp;
        if(index1 > max)
            max = index1;
        mark[index1] = 1;
        count++;
    }

    scanf("%d" , &b);

    for(int i = 0; i < b;i++){
        scanf(" %d %lf",&index2,&temp);
        sum[index2] += temp;
        if(index2 > max)
            max = index2;
        if(mark[index2] == 0){
           mark[index2] = 1;
           count++;
        }
    }

    for(int i=1000;i>=0;i--){
        if(mark[i]==1&&fabs(sum[i])<0.00001){//这里要注意
          count--;
          mark[i]=0;
        }
    }

    printf("%d" ,count);

    for(int i = max; i >= 0;i--){
        if(mark[i] !=0){//注意不是和不为0,因为有可能是相反数相加
            if(i != 0)
                printf(" %d %.1lf" ,i, sum[i]);
            else
                printf(" %d %.1lf\n" ,i, sum[i]);
        }
    }

    return 0;
}

其实好久没怎么写过C++了,连数组的用法都生疏了,在这方面花费了不少时间,需要再看一下C++,比如数组啊,指针啊之类的。
加油啊,多思,多练!

你可能感兴趣的:(PAT)